Cargo.lock 227 KB
Newer Older
1
2
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Gavin Wood's avatar
Gavin Wood committed
3
4
5
6
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
7
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
Gavin Wood's avatar
Gavin Wood committed
8
dependencies = [
9
10
 "lazy_static",
 "regex",
Gavin Wood's avatar
Gavin Wood committed
11
12
]

13
14
[[package]]
name = "addr2line"
15
version = "0.13.0"
16
source = "registry+https://github.com/rust-lang/crates.io-index"
17
checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
18
dependencies = [
19
 "gimli 0.22.0",
20
21
]

22
23
24
25
26
27
[[package]]
name = "adler"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccc9a9dd069569f212bc4330af9f17c4afb5e8ce185e83dbb14f1349dda18b10"

28
29
[[package]]
name = "aead"
30
version = "0.3.2"
31
source = "registry+https://github.com/rust-lang/crates.io-index"
32
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
33
dependencies = [
34
 "generic-array 0.14.2",
35
36
37
38
]

[[package]]
name = "aes"
39
version = "0.4.0"
40
source = "registry+https://github.com/rust-lang/crates.io-index"
41
checksum = "f7001367fde4c768a19d1029f0a8be5abd9308e1119846d5bd9ad26297b8faf5"
42
dependencies = [
43
44
 "aes-soft 0.4.0",
 "aesni 0.7.0",
45
 "block-cipher",
46
47
]

48
49
50
51
52
53
54
55
56
57
58
59
[[package]]
name = "aes-ctr"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee"
dependencies = [
 "aes-soft 0.3.3",
 "aesni 0.6.0",
 "ctr",
 "stream-cipher 0.3.2",
]

60
61
[[package]]
name = "aes-gcm"
62
version = "0.6.0"
63
source = "registry+https://github.com/rust-lang/crates.io-index"
64
checksum = "86f5007801316299f922a6198d1d09a0bae95786815d066d5880d13f7c45ead1"
65
66
67
dependencies = [
 "aead",
 "aes",
68
 "block-cipher",
69
70
71
72
 "ghash",
 "subtle 2.2.3",
]

73
74
75
76
77
78
79
80
81
82
83
[[package]]
name = "aes-soft"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d"
dependencies = [
 "block-cipher-trait",
 "byteorder 1.3.4",
 "opaque-debug 0.2.3",
]

84
85
[[package]]
name = "aes-soft"
86
version = "0.4.0"
87
source = "registry+https://github.com/rust-lang/crates.io-index"
88
checksum = "4925647ee64e5056cf231608957ce7c81e12d6d6e316b9ce1404778cc1d35fa7"
89
dependencies = [
90
 "block-cipher",
91
 "byteorder 1.3.4",
92
 "opaque-debug 0.2.3",
93
94
]

95
96
97
98
99
100
101
102
103
104
105
[[package]]
name = "aesni"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100"
dependencies = [
 "block-cipher-trait",
 "opaque-debug 0.2.3",
 "stream-cipher 0.3.2",
]

106
107
[[package]]
name = "aesni"
108
version = "0.7.0"
109
source = "registry+https://github.com/rust-lang/crates.io-index"
110
checksum = "d050d39b0b7688b3a3254394c3e30a9d66c41dcf9b05b0e2dbdc623f6505d264"
111
dependencies = [
112
113
 "block-cipher",
 "opaque-debug 0.2.3",
114
115
]

116
117
[[package]]
name = "ahash"
118
version = "0.2.18"
119
source = "registry+https://github.com/rust-lang/crates.io-index"
120
checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"
121
dependencies = [
122
 "const-random",
123
124
]

Bastian Köcher's avatar
Bastian Köcher committed
125
126
127
128
129
130
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"

131
132
[[package]]
name = "aho-corasick"
133
version = "0.7.13"
134
source = "registry+https://github.com/rust-lang/crates.io-index"
135
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
136
dependencies = [
137
 "memchr",
138
139
]

140
141
142
143
[[package]]
name = "alga"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
144
checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
145
dependencies = [
146
147
 "approx",
 "num-complex",
148
 "num-traits 0.2.12",
149
150
]

asynchronous rob's avatar
asynchronous rob committed
151
152
153
154
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
155
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
asynchronous rob's avatar
asynchronous rob committed
156
dependencies = [
157
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
158
159
]

160
161
162
163
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
164
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
165
dependencies = [
166
 "winapi 0.3.9",
167
168
]

169
170
[[package]]
name = "anyhow"
171
version = "1.0.31"
172
source = "registry+https://github.com/rust-lang/crates.io-index"
173
checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f"
174

175
176
177
178
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
179
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
180
dependencies = [
181
 "num-traits 0.2.12",
182
183
]

184
185
[[package]]
name = "arc-swap"
186
version = "0.4.7"
187
source = "registry+https://github.com/rust-lang/crates.io-index"
188
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
189

asynchronous rob's avatar
asynchronous rob committed
190
191
[[package]]
name = "arrayref"
Gavin Wood's avatar
Gavin Wood committed
192
version = "0.3.6"
asynchronous rob's avatar
asynchronous rob committed
193
source = "registry+https://github.com/rust-lang/crates.io-index"
194
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
asynchronous rob's avatar
asynchronous rob committed
195
196
197

[[package]]
name = "arrayvec"
198
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
199
source = "registry+https://github.com/rust-lang/crates.io-index"
200
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
asynchronous rob's avatar
asynchronous rob committed
201
dependencies = [
202
 "nodrop",
asynchronous rob's avatar
asynchronous rob committed
203
204
]

205
206
207
208
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
209
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
210

asynchronous rob's avatar
asynchronous rob committed
211
212
[[package]]
name = "asn1_der"
213
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
214
source = "registry+https://github.com/rust-lang/crates.io-index"
215
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
asynchronous rob's avatar
asynchronous rob committed
216
dependencies = [
217
 "asn1_der_derive",
218
219
220
221
]

[[package]]
name = "asn1_der_derive"
222
version = "0.1.2"
223
source = "registry+https://github.com/rust-lang/crates.io-index"
224
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
225
dependencies = [
226
 "quote 1.0.7",
227
 "syn 1.0.33",
asynchronous rob's avatar
asynchronous rob committed
228
229
]

230
231
[[package]]
name = "assert_cmd"
232
version = "0.12.2"
233
source = "registry+https://github.com/rust-lang/crates.io-index"
234
checksum = "936fcf2c692b37c696cd0002c57752b2d9478402450c9ca4a463f6afae16d6f5"
235
dependencies = [
236
237
238
239
240
 "doc-comment",
 "escargot",
 "predicates",
 "predicates-core",
 "predicates-tree",
241
 "wait-timeout",
242
243
]

Gavin Wood's avatar
Gavin Wood committed
244
245
246
247
[[package]]
name = "assert_matches"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
248
checksum = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"
Gavin Wood's avatar
Gavin Wood committed
249

250
251
252
253
254
255
256
257
258
259
260
[[package]]
name = "async-channel"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee81ba99bee79f3c8ae114ae4baa7eaa326f63447cf2ec65e4393618b63f8770"
dependencies = [
 "concurrent-queue",
 "event-listener",
 "futures-core",
]

261
262
263
264
265
266
267
268
269
270
271
272
273
274
[[package]]
name = "async-executor"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90f47c78ea98277cb1f5e6f60ba4fc762f5eafe9f6511bc2f7dfd8b75c225650"
dependencies = [
 "async-io",
 "futures-lite",
 "multitask",
 "parking",
 "scoped-tls 1.0.0",
 "waker-fn",
]

275
276
[[package]]
name = "async-io"
277
version = "0.1.5"
278
source = "registry+https://github.com/rust-lang/crates.io-index"
279
checksum = "ca8126ef9fb99355c6fd27575d691be4887b884137a5b6f48c2d961f13590c51"
280
281
282
283
284
dependencies = [
 "cfg-if",
 "concurrent-queue",
 "futures-lite",
 "libc",
285
 "once_cell 1.4.0",
286
287
288
289
290
291
292
 "parking",
 "socket2",
 "vec-arena",
 "wepoll-sys-stjepang",
 "winapi 0.3.9",
]

293
294
[[package]]
name = "async-std"
295
version = "1.6.2"
296
source = "registry+https://github.com/rust-lang/crates.io-index"
297
checksum = "00d68a33ebc8b57800847d00787307f84a562224a14db069b0acefe4c2abbf5d"
298
dependencies = [
299
 "async-task",
300
 "crossbeam-utils",
301
 "futures-channel",
302
303
 "futures-core",
 "futures-io",
304
 "futures-timer 3.0.2",
305
 "kv-log-macro",
306
 "log 0.4.11",
307
308
 "memchr",
 "num_cpus",
309
 "once_cell 1.4.0",
310
311
312
 "pin-project-lite",
 "pin-utils",
 "slab",
313
 "smol 0.1.18",
314
 "wasm-bindgen-futures",
315
316
]

317
318
[[package]]
name = "async-task"
319
version = "3.0.0"
320
source = "registry+https://github.com/rust-lang/crates.io-index"
321
checksum = "c17772156ef2829aadc587461c7753af20b7e8db1529bc66855add962a3b35d3"
322

323
324
[[package]]
name = "async-tls"
325
version = "0.8.0"
326
source = "registry+https://github.com/rust-lang/crates.io-index"
327
checksum = "df097e3f506bec0e1a24f06bb3c962c228f36671de841ff579cb99f371772634"
328
dependencies = [
329
 "futures 0.3.5",
330
 "rustls",
331
 "webpki",
332
 "webpki-roots 0.19.0",
333
334
]

335
336
337
338
339
340
341
342
[[package]]
name = "async-trait"
version = "0.1.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92"
dependencies = [
 "proc-macro2 1.0.18",
 "quote 1.0.7",
343
 "syn 1.0.33",
344
345
]

Seun Lanlege's avatar
Seun Lanlege committed
346
347
348
349
350
351
[[package]]
name = "atomic"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64f46ca51dca4837f1520754d1c8c36636356b81553d928dc9c177025369a06e"

352
353
354
355
356
357
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"

asynchronous rob's avatar
asynchronous rob committed
358
359
[[package]]
name = "atty"
Gavin Wood's avatar
Gavin Wood committed
360
version = "0.2.14"
asynchronous rob's avatar
asynchronous rob committed
361
source = "registry+https://github.com/rust-lang/crates.io-index"
362
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
asynchronous rob's avatar
asynchronous rob committed
363
dependencies = [
364
365
 "hermit-abi",
 "libc",
366
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
367
368
]

369
370
[[package]]
name = "autocfg"
Kian Paimani's avatar
Kian Paimani committed
371
version = "0.1.7"
372
source = "registry+https://github.com/rust-lang/crates.io-index"
373
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
374

Gavin Wood's avatar
Gavin Wood committed
375
376
377
378
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
379
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
Gavin Wood's avatar
Gavin Wood committed
380

asynchronous rob's avatar
asynchronous rob committed
381
382
[[package]]
name = "backtrace"
383
version = "0.3.50"
asynchronous rob's avatar
asynchronous rob committed
384
source = "registry+https://github.com/rust-lang/crates.io-index"
385
checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
asynchronous rob's avatar
asynchronous rob committed
386
dependencies = [
387
 "addr2line",
388
389
 "cfg-if",
 "libc",
390
391
 "miniz_oxide",
 "object 0.20.0",
392
 "rustc-demangle",
asynchronous rob's avatar
asynchronous rob committed
393
394
395
]

[[package]]
396
397
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
398
source = "registry+https://github.com/rust-lang/crates.io-index"
399
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
asynchronous rob's avatar
asynchronous rob committed
400

401
402
403
404
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
405
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
406

407
408
[[package]]
name = "base64"
409
version = "0.12.3"
410
source = "registry+https://github.com/rust-lang/crates.io-index"
411
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
412

Gavin Wood's avatar
Gavin Wood committed
413
414
[[package]]
name = "bincode"
415
version = "1.3.1"
Gavin Wood's avatar
Gavin Wood committed
416
source = "registry+https://github.com/rust-lang/crates.io-index"
417
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
Gavin Wood's avatar
Gavin Wood committed
418
dependencies = [
419
 "byteorder 1.3.4",
420
 "serde",
Gavin Wood's avatar
Gavin Wood committed
421
422
]

423
424
[[package]]
name = "bindgen"
425
version = "0.54.0"
426
source = "registry+https://github.com/rust-lang/crates.io-index"
427
checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
428
dependencies = [
429
430
431
432
433
 "bitflags",
 "cexpr",
 "cfg-if",
 "clang-sys",
 "clap",
434
 "env_logger",
435
436
 "lazy_static",
 "lazycell",
437
 "log 0.4.11",
438
 "peeking_take_while",
439
440
 "proc-macro2 1.0.18",
 "quote 1.0.7",
441
442
443
444
 "regex",
 "rustc-hash",
 "shlex",
 "which",
445
446
]

447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
[[package]]
name = "bip39"
version = "0.6.0-beta.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7059804e226b3ac116519a252d7f5fb985a5ccc0e93255e036a5f7e7283323f4"
dependencies = [
 "failure",
 "hashbrown 0.1.8",
 "hmac",
 "once_cell 0.1.8",
 "pbkdf2",
 "rand 0.6.5",
 "sha2 0.8.2",
]

462
463
[[package]]
name = "bitflags"
464
version = "1.2.1"
465
source = "registry+https://github.com/rust-lang/crates.io-index"
466
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
467

asynchronous rob's avatar
asynchronous rob committed
468
[[package]]
469
470
name = "bitmask"
version = "0.5.0"
471
source = "registry+https://github.com/rust-lang/crates.io-index"
472
checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
asynchronous rob's avatar
asynchronous rob committed
473

Gavin Wood's avatar
Gavin Wood committed
474
475
[[package]]
name = "bitvec"
476
version = "0.17.4"
Gavin Wood's avatar
Gavin Wood committed
477
source = "registry+https://github.com/rust-lang/crates.io-index"
478
479
480
481
482
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
 "either",
 "radium",
]
Gavin Wood's avatar
Gavin Wood committed
483

484
485
486
487
488
489
490
[[package]]
name = "blake2"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471"
dependencies = [
 "byte-tools",
491
 "byteorder 1.3.4",
492
493
494
 "crypto-mac 0.8.0",
 "digest 0.9.0",
 "opaque-debug 0.2.3",
495
496
]

asynchronous rob's avatar
asynchronous rob committed
497
498
499
500
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
501
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
asynchronous rob's avatar
asynchronous rob committed
502
dependencies = [
503
504
 "arrayvec 0.4.12",
 "constant_time_eq",
asynchronous rob's avatar
asynchronous rob committed
505
506
]

Gavin Wood's avatar
Gavin Wood committed
507
508
[[package]]
name = "blake2b_simd"
Gavin Wood's avatar
Gavin Wood committed
509
version = "0.5.10"
Gavin Wood's avatar
Gavin Wood committed
510
source = "registry+https://github.com/rust-lang/crates.io-index"
511
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
Gavin Wood's avatar
Gavin Wood committed
512
dependencies = [
513
514
515
 "arrayref",
 "arrayvec 0.5.1",
 "constant_time_eq",
Gavin Wood's avatar
Gavin Wood committed
516
517
]

518
519
520
521
522
523
524
525
526
527
528
[[package]]
name = "blake2s_simd"
version = "0.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab9e07352b829279624ceb7c64adb4f585dacdb81d35cafae81139ccd617cf44"
dependencies = [
 "arrayref",
 "arrayvec 0.5.1",
 "constant_time_eq",
]

529
530
[[package]]
name = "block-buffer"
531
version = "0.7.3"
532
source = "registry+https://github.com/rust-lang/crates.io-index"
533
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
534
dependencies = [
535
536
 "block-padding",
 "byte-tools",
537
 "byteorder 1.3.4",
538
 "generic-array 0.12.3",
539
540
]

541
[[package]]
542
543
544
545
546
547
548
549
550
551
552
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
 "generic-array 0.14.2",
]

[[package]]
name = "block-cipher"
version = "0.7.1"
553
source = "registry+https://github.com/rust-lang/crates.io-index"
554
checksum = "fa136449e765dc7faa244561ccae839c394048667929af599b5d931ebe7b7f10"
555
dependencies = [
556
 "generic-array 0.14.2",
557
558
]

559
560
561
562
563
564
565
566
567
[[package]]
name = "block-cipher-trait"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
dependencies = [
 "generic-array 0.12.3",
]

568
569
[[package]]
name = "block-padding"
570
version = "0.1.5"
571
source = "registry+https://github.com/rust-lang/crates.io-index"
572
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
573
dependencies = [
574
 "byte-tools",
575
576
]

577
[[package]]
578
name = "blocking"
579
version = "0.4.7"
580
source = "registry+https://github.com/rust-lang/crates.io-index"
581
checksum = "d2468ff7bf85066b4a3678fede6fe66db31846d753ff0adfbfab2c6a6e81612b"
582
dependencies = [
583
584
585
 "async-channel",
 "atomic-waker",
 "futures-lite",
586
 "once_cell 1.4.0",
587
588
 "parking",
 "waker-fn",
589
590
]

591
592
593
594
595
596
597
598
599
[[package]]
name = "blocking"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76e94bf99b692f54c9d05f97454d3faf11134523fe5b180564a3fb6ed63bcc0a"
dependencies = [
 "async-channel",
 "atomic-waker",
 "futures-lite",
600
 "once_cell 1.4.0",
601
602
603
 "waker-fn",
]

asynchronous rob's avatar
asynchronous rob committed
604
605
[[package]]
name = "bs58"
606
version = "0.3.1"
asynchronous rob's avatar
asynchronous rob committed
607
source = "registry+https://github.com/rust-lang/crates.io-index"
608
checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb"
asynchronous rob's avatar
asynchronous rob committed
609

610
611
[[package]]
name = "bstr"
612
version = "0.2.13"
613
source = "registry+https://github.com/rust-lang/crates.io-index"
614
checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
615
dependencies = [
616
 "memchr",
617
618
]

619
620
[[package]]
name = "bumpalo"
621
version = "3.4.0"
622
source = "registry+https://github.com/rust-lang/crates.io-index"
623
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
624

625
626
[[package]]
name = "byte-slice-cast"
Gavin Wood's avatar
Gavin Wood committed
627
version = "0.3.5"
628
source = "registry+https://github.com/rust-lang/crates.io-index"
629
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
630

631
632
[[package]]
name = "byte-tools"
633
version = "0.3.1"
634
source = "registry+https://github.com/rust-lang/crates.io-index"
635
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
636

637
638
639
640
641
642
[[package]]
name = "byteorder"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"

asynchronous rob's avatar
asynchronous rob committed
643
644
[[package]]
name = "byteorder"
645
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
646
source = "registry+https://github.com/rust-lang/crates.io-index"
647
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
648
649
650

[[package]]
name = "bytes"
651
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
652
source = "registry+https://github.com/rust-lang/crates.io-index"
653
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
654
dependencies = [
655
 "byteorder 1.3.4",
656
657
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
658
659
]

Gavin Wood's avatar
Gavin Wood committed
660
661
[[package]]
name = "bytes"
662
version = "0.5.5"
Gavin Wood's avatar
Gavin Wood committed
663
source = "registry+https://github.com/rust-lang/crates.io-index"
664
665
666
667
checksum = "118cf036fbb97d0816e3c34b2d7a1e8cfc60f68fcf63d550ddbe9bd5f59c213b"
dependencies = [
 "loom",
]
668

669
670
671
672
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
673
checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
674

675
676
677
678
679
680
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"

asynchronous rob's avatar
asynchronous rob committed
681
682
[[package]]
name = "cc"
683
version = "1.0.58"
asynchronous rob's avatar
asynchronous rob committed
684
source = "registry+https://github.com/rust-lang/crates.io-index"
685
checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
686
dependencies = [
687
 "jobserver",
688
689
690
691
]

[[package]]
name = "cexpr"
692
version = "0.4.0"
693
source = "registry+https://github.com/rust-lang/crates.io-index"
694
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
695
dependencies = [
696
 "nom",
697
]
asynchronous rob's avatar
asynchronous rob committed
698
699
700

[[package]]
name = "cfg-if"
701
version = "0.1.10"
asynchronous rob's avatar
asynchronous rob committed
702
source = "registry+https://github.com/rust-lang/crates.io-index"
703
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
asynchronous rob's avatar
asynchronous rob committed
704

705
[[package]]
706
name = "chacha20"
707
version = "0.4.3"
708
source = "registry+https://github.com/rust-lang/crates.io-index"
709
checksum = "086c0f07ac275808b7bf9a39f2fd013aae1498be83632814c8c4e0bd53f2dc58"
710
dependencies = [
711
 "stream-cipher 0.4.1",
712
713
714
715
716
 "zeroize",
]

[[package]]
name = "chacha20poly1305"
717
version = "0.5.1"
718
source = "registry+https://github.com/rust-lang/crates.io-index"
719
checksum = "18b0c90556d8e3fec7cf18d84a2f53d27b21288f2fe481b830fadcf809e48205"
720
721
722
723
dependencies = [
 "aead",
 "chacha20",
 "poly1305",
724
 "stream-cipher 0.4.1",
725
 "zeroize",
726
727
]

asynchronous rob's avatar
asynchronous rob committed
728
729
[[package]]
name = "chrono"
730
version = "0.4.13"
asynchronous rob's avatar
asynchronous rob committed
731
source = "registry+https://github.com/rust-lang/crates.io-index"
732
checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
asynchronous rob's avatar
asynchronous rob committed
733
dependencies = [
734
735
 "js-sys",
 "num-integer",
736
 "num-traits 0.2.12",
737
738
 "time",
 "wasm-bindgen",
asynchronous rob's avatar
asynchronous rob committed
739
740
]

741
742
[[package]]
name = "clang-sys"
743
version = "0.29.3"
744
source = "registry+https://github.com/rust-lang/crates.io-index"
745
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
746
dependencies = [
747
748
749
 "glob",
 "libc",
 "libloading",
750
751
]

asynchronous rob's avatar
asynchronous rob committed
752
753
[[package]]
name = "clap"
754
version = "2.33.1"
asynchronous rob's avatar
asynchronous rob committed
755
source = "registry+https://github.com/rust-lang/crates.io-index"
756
checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
asynchronous rob's avatar
asynchronous rob committed
757
dependencies = [
758
759
760
761
762
763
764
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
765
766
]

asynchronous rob's avatar
asynchronous rob committed
767
768
769
770
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
771
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
772
dependencies = [
773
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
774
775
]

776
777
778
779
780
781
782
783
784
[[package]]
name = "cloudabi"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
dependencies = [
 "bitflags",
]

785
786
787
788
789
790
791
792
793
[[package]]
name = "concurrent-queue"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f83c06aff61f2d899eb87c379df3cbf7876f14471dcab474e0b6dc90ab96c080"
dependencies = [
 "cache-padded",
]

794
795
796
797
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
798
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
799
dependencies = [
800
801
 "cfg-if",
 "wasm-bindgen",
802
803
804
805
806
807
]

[[package]]
name = "console_log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
808
checksum = "1e7871d2947441b0fdd8e2bd1ce2a2f75304f896582c0d572162d48290683c48"
809
dependencies = [
810
 "log 0.4.11",
811
 "web-sys",
812
813
]

814
815
[[package]]
name = "const-random"
Gavin Wood's avatar
Gavin Wood committed
816
version = "0.1.8"
817
source = "registry+https://github.com/rust-lang/crates.io-index"
818
checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"
819
dependencies = [
820
821
 "const-random-macro",
 "proc-macro-hack",
822
823
824
825
]

[[package]]
name = "const-random-macro"
Gavin Wood's avatar
Gavin Wood committed
826
version = "0.1.8"
827
source = "registry+https://github.com/rust-lang/crates.io-index"
828
checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"
829
dependencies = [
830
831
 "getrandom",
 "proc-macro-hack",
832
833
]

asynchronous rob's avatar
asynchronous rob committed
834
835
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
836
version = "0.1.5"
asynchronous rob's avatar
asynchronous rob committed
837
source = "registry+https://github.com/rust-lang/crates.io-index"
838
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
asynchronous rob's avatar
asynchronous rob committed
839

840
841
[[package]]
name = "core-foundation"
Gavin Wood's avatar
Gavin Wood committed
842
version = "0.7.0"
843
source = "registry+https://github.com/rust-lang/crates.io-index"
844
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
845
dependencies = [
846
847
 "core-foundation-sys",
 "libc",
848
849
850
851
]

[[package]]
name = "core-foundation-sys"
Gavin Wood's avatar
Gavin Wood committed
852
version = "0.7.0"
853
source = "registry+https://github.com/rust-lang/crates.io-index"
854
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
855

856
857
858
859
860
861
[[package]]
name = "cpuid-bool"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d375c433320f6c5057ae04a04376eef4d04ce2801448cf8863a78da99107be4"

Gavin Wood's avatar
Gavin Wood committed
862
[[package]]
Gavin Wood's avatar
Gavin Wood committed
863
name = "cranelift-bforest"
864
version = "0.66.0"
865
866
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dcc286b052ee24a1e5a222e7c1125e6010ad35b0f248709b9b3737a8fedcfdf"
Gavin Wood's avatar
Gavin Wood committed
867
dependencies = [
868
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
869
870
871
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
872
name = "cranelift-codegen"
873
version = "0.66.0"
874
875
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d9badfe36176cb653506091693bc2bb1970c9bddfcd6ec7fac404f7eaec6f38"
Gavin Wood's avatar
Gavin Wood committed
876
dependencies = [
877
 "byteorder 1.3.4",
878
879
880
881
 "cranelift-bforest",
 "cranelift-codegen-meta",
 "cranelift-codegen-shared",
 "cranelift-entity",
882
 "gimli 0.21.0",
883
 "log 0.4.11",
884
 "regalloc",
885
 "serde",
Bastian Köcher's avatar
Bastian Köcher committed
886
 "smallvec 1.4.1",
887
888
 "target-lexicon",
 "thiserror",
Gavin Wood's avatar
Gavin Wood committed
889
890
891
892
]

[[package]]
name = "cranelift-codegen-meta"
893
version = "0.66.0"
894
895
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3f460031861e4f4ad510be62b2ae50bba6cc886b598a36f9c0a970feab9598"
Gavin Wood's avatar
Gavin Wood committed
896
dependencies = [
897
898
 "cranelift-codegen-shared",
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
899
900
901
902
]

[[package]]
name = "cranelift-codegen-shared"
903
version = "0.66.0"
904
905
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ad12409e922e7697cd0bdc7dc26992f64a77c31880dfe5e3c7722f4710206d"
Gavin Wood's avatar
Gavin Wood committed
906
907
908

[[package]]
name = "cranelift-entity"
909
version = "0.66.0"
910
911
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97cdc58972ea065d107872cfb9079f4c92ade78a8af85aaff519a65b5d13f71"
Gavin Wood's avatar
Gavin Wood committed
912
dependencies = [
913
 "serde",
Gavin Wood's avatar
Gavin Wood committed
914
915
916
917
]

[[package]]
name = "cranelift-frontend"
918
version = "0.66.0"
919
920
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ef419efb4f94ecc02e5d9fbcc910d2bb7f0040e2de570e63a454f883bc891d6"
Gavin Wood's avatar
Gavin Wood committed
921
dependencies = [
922
 "cranelift-codegen",
923
 "log 0.4.11",
Bastian Köcher's avatar
Bastian Köcher committed
924
 "smallvec 1.4.1",
925
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
926
927
928
929
]

[[package]]
name = "cranelift-native"
930
version = "0.66.0"
931
932
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e69d44d59826eef6794066ac2c0f4ad3975f02d97030c60dbc04e3886adf36e"
Gavin Wood's avatar
Gavin Wood committed
933
dependencies = [
934
935
936
 "cranelift-codegen",
 "raw-cpuid",
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
937
938
939
940
]

[[package]]
name = "cranelift-wasm"
941
version = "0.66.0"
942
943
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "979df666b1304624abe99738e9e0e7c7479ee5523ba4b8b237df9ff49996acbb"
Gavin Wood's avatar