Cargo.lock 234 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
[[package]]
name = "adler"
24
version = "0.2.2"
25
source = "registry+https://github.com/rust-lang/crates.io-index"
26
checksum = "ccc9a9dd069569f212bc4330af9f17c4afb5e8ce185e83dbb14f1349dda18b10"
27

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 = [
Pierre Krieger's avatar
Pierre Krieger committed
34
 "generic-array 0.14.4",
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",
 "aesni",
45
 "block-cipher 0.7.1",
46
47
48
49
]

[[package]]
name = "aes-gcm"
50
version = "0.6.0"
51
source = "registry+https://github.com/rust-lang/crates.io-index"
52
checksum = "86f5007801316299f922a6198d1d09a0bae95786815d066d5880d13f7c45ead1"
53
54
55
dependencies = [
 "aead",
 "aes",
56
 "block-cipher 0.7.1",
57
 "ghash",
58
 "subtle 2.2.3",
59
60
61
62
]

[[package]]
name = "aes-soft"
63
version = "0.4.0"
64
source = "registry+https://github.com/rust-lang/crates.io-index"
65
checksum = "4925647ee64e5056cf231608957ce7c81e12d6d6e316b9ce1404778cc1d35fa7"
66
dependencies = [
67
 "block-cipher 0.7.1",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
68
 "byteorder",
69
 "opaque-debug 0.2.3",
70
71
72
73
]

[[package]]
name = "aesni"
74
version = "0.7.0"
75
source = "registry+https://github.com/rust-lang/crates.io-index"
76
checksum = "d050d39b0b7688b3a3254394c3e30a9d66c41dcf9b05b0e2dbdc623f6505d264"
77
dependencies = [
78
79
 "block-cipher 0.7.1",
 "opaque-debug 0.2.3",
80
81
]

Bastian Köcher's avatar
Bastian Köcher committed
82
83
84
85
86
87
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"

88
89
90
91
92
93
[[package]]
name = "ahash"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"

94
95
[[package]]
name = "aho-corasick"
96
version = "0.7.13"
97
source = "registry+https://github.com/rust-lang/crates.io-index"
98
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
99
dependencies = [
100
 "memchr",
101
102
]

asynchronous rob's avatar
asynchronous rob committed
103
104
105
106
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
107
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
asynchronous rob's avatar
asynchronous rob committed
108
dependencies = [
109
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
110
111
]

112
113
114
115
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
116
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
117
dependencies = [
118
 "winapi 0.3.9",
119
120
]

121
122
[[package]]
name = "anyhow"
123
version = "1.0.34"
124
source = "registry+https://github.com/rust-lang/crates.io-index"
125
checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
126

127
128
129
130
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
131
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
132
dependencies = [
133
 "num-traits 0.2.12",
134
135
]

136
137
[[package]]
name = "arc-swap"
138
version = "0.4.7"
139
source = "registry+https://github.com/rust-lang/crates.io-index"
140
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
141

asynchronous rob's avatar
asynchronous rob committed
142
143
[[package]]
name = "arrayref"
Gavin Wood's avatar
Gavin Wood committed
144
version = "0.3.6"
asynchronous rob's avatar
asynchronous rob committed
145
source = "registry+https://github.com/rust-lang/crates.io-index"
146
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
asynchronous rob's avatar
asynchronous rob committed
147
148
149

[[package]]
name = "arrayvec"
150
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
151
source = "registry+https://github.com/rust-lang/crates.io-index"
152
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
asynchronous rob's avatar
asynchronous rob committed
153
dependencies = [
154
 "nodrop",
asynchronous rob's avatar
asynchronous rob committed
155
156
]

157
158
[[package]]
name = "arrayvec"
159
version = "0.5.2"
160
source = "registry+https://github.com/rust-lang/crates.io-index"
161
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
162

asynchronous rob's avatar
asynchronous rob committed
163
164
[[package]]
name = "asn1_der"
165
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
166
source = "registry+https://github.com/rust-lang/crates.io-index"
167
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
asynchronous rob's avatar
asynchronous rob committed
168
dependencies = [
169
 "asn1_der_derive",
170
171
172
173
]

[[package]]
name = "asn1_der_derive"
174
version = "0.1.2"
175
source = "registry+https://github.com/rust-lang/crates.io-index"
176
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
177
dependencies = [
178
 "quote 1.0.7",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
179
 "syn 1.0.48",
asynchronous rob's avatar
asynchronous rob committed
180
181
]

182
183
[[package]]
name = "assert_cmd"
184
version = "1.0.2"
185
source = "registry+https://github.com/rust-lang/crates.io-index"
186
checksum = "3dc1679af9a1ab4bea16f228b05d18f8363f8327b1fa8db00d2760cfafc6b61e"
187
dependencies = [
188
189
190
191
 "doc-comment",
 "predicates",
 "predicates-core",
 "predicates-tree",
192
 "wait-timeout",
193
194
]

Gavin Wood's avatar
Gavin Wood committed
195
196
[[package]]
name = "assert_matches"
197
version = "1.4.0"
Gavin Wood's avatar
Gavin Wood committed
198
source = "registry+https://github.com/rust-lang/crates.io-index"
199
checksum = "695579f0f2520f3774bb40461e5adb066459d4e0af4d59d20175484fb8e9edf1"
Gavin Wood's avatar
Gavin Wood committed
200

201
202
[[package]]
name = "async-channel"
203
version = "1.5.1"
204
source = "registry+https://github.com/rust-lang/crates.io-index"
205
checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9"
206
207
208
209
210
211
dependencies = [
 "concurrent-queue",
 "event-listener",
 "futures-core",
]

212
213
[[package]]
name = "async-executor"
214
version = "1.3.0"
215
source = "registry+https://github.com/rust-lang/crates.io-index"
216
checksum = "d373d78ded7d0b3fa8039375718cde0aace493f2e34fb60f51cbf567562ca801"
217
dependencies = [
218
 "async-task",
219
220
 "concurrent-queue",
 "fastrand",
221
 "futures-lite",
222
 "once_cell",
223
 "vec-arena",
224
225
226
227
]

[[package]]
name = "async-global-executor"
228
version = "1.4.2"
229
source = "registry+https://github.com/rust-lang/crates.io-index"
230
checksum = "124ac8c265e407641c3362b8f4d39cdb4e243885b71eef087be27199790f5a3a"
231
dependencies = [
232
233
234
 "async-executor",
 "async-io",
 "futures-lite",
235
 "num_cpus",
236
 "once_cell",
237
238
239
240
]

[[package]]
name = "async-io"
241
version = "1.3.1"
242
source = "registry+https://github.com/rust-lang/crates.io-index"
243
checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd"
244
245
246
dependencies = [
 "concurrent-queue",
 "fastrand",
247
 "futures-lite",
248
 "libc",
249
 "log",
250
 "nb-connect",
251
 "once_cell",
252
 "parking",
253
 "polling",
254
 "vec-arena",
255
 "waker-fn",
256
257
258
 "winapi 0.3.9",
]

259
260
261
262
263
264
265
266
267
[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
 "event-listener",
]

268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
[[package]]
name = "async-process"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8cea09c1fb10a317d1b5af8024eeba256d6554763e85ecd90ff8df31c7bbda"
dependencies = [
 "async-io",
 "blocking",
 "cfg-if 0.1.10",
 "event-listener",
 "futures-lite",
 "once_cell",
 "signal-hook",
 "winapi 0.3.9",
]

284
285
[[package]]
name = "async-std"
286
version = "1.8.0"
287
source = "registry+https://github.com/rust-lang/crates.io-index"
288
checksum = "8f9f84f1280a2b436a2c77c2582602732b6c2f4321d5494d6e799e6c367859a8"
289
dependencies = [
290
 "async-channel",
291
 "async-global-executor",
292
 "async-io",
293
 "async-mutex",
294
 "async-process",
295
 "blocking",
296
 "crossbeam-utils 0.8.1",
297
 "futures-channel",
298
299
 "futures-core",
 "futures-io",
300
 "futures-lite",
301
 "gloo-timers",
302
 "kv-log-macro",
303
 "log",
304
305
 "memchr",
 "num_cpus",
306
 "once_cell",
307
 "pin-project-lite 0.2.0",
308
309
 "pin-utils",
 "slab",
310
 "wasm-bindgen-futures",
311
312
]

313
314
315
316
317
318
[[package]]
name = "async-task"
version = "4.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"

319
320
[[package]]
name = "async-tls"
321
version = "0.11.0"
322
source = "registry+https://github.com/rust-lang/crates.io-index"
323
checksum = "2f23d769dbf1838d5df5156e7b1ad404f4c463d1ac2c6aeb6cd943630f8a8400"
324
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
325
326
 "futures-core",
 "futures-io",
327
 "rustls 0.19.0",
328
 "webpki",
329
 "webpki-roots",
330
331
]

332
333
[[package]]
name = "async-trait"
334
version = "0.1.42"
335
source = "registry+https://github.com/rust-lang/crates.io-index"
336
checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
337
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
338
 "proc-macro2 1.0.24",
339
 "quote 1.0.7",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
340
 "syn 1.0.48",
341
342
]

Seun Lanlege's avatar
Seun Lanlege committed
343
344
[[package]]
name = "atomic"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
345
version = "0.5.0"
Seun Lanlege's avatar
Seun Lanlege committed
346
source = "registry+https://github.com/rust-lang/crates.io-index"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
347
348
checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"
dependencies = [
349
 "autocfg 1.0.0",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
350
]
Seun Lanlege's avatar
Seun Lanlege committed
351

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
[[package]]
name = "autocfg"
377
version = "1.0.0"
Gavin Wood's avatar
Gavin Wood committed
378
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
 "cfg-if 0.1.10",
389
 "libc",
390
 "miniz_oxide",
391
 "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
405
406
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"

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

Shawn Tabrizi's avatar
Shawn Tabrizi committed
413
414
415
416
417
418
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"

Gavin Wood's avatar
Gavin Wood committed
419
420
[[package]]
name = "bincode"
421
version = "1.3.1"
Gavin Wood's avatar
Gavin Wood committed
422
source = "registry+https://github.com/rust-lang/crates.io-index"
423
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
Gavin Wood's avatar
Gavin Wood committed
424
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
425
 "byteorder",
426
 "serde",
Gavin Wood's avatar
Gavin Wood committed
427
428
]

429
430
[[package]]
name = "bindgen"
431
version = "0.54.0"
432
source = "registry+https://github.com/rust-lang/crates.io-index"
433
checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
434
dependencies = [
435
436
 "bitflags",
 "cexpr",
437
 "cfg-if 0.1.10",
438
439
 "clang-sys",
 "clap",
440
 "env_logger 0.7.1",
441
442
 "lazy_static",
 "lazycell",
443
 "log",
444
 "peeking_take_while",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
445
 "proc-macro2 1.0.24",
446
 "quote 1.0.7",
447
448
449
450
 "regex",
 "rustc-hash",
 "shlex",
 "which",
451
452
]

453
454
[[package]]
name = "bitflags"
455
version = "1.2.1"
456
source = "registry+https://github.com/rust-lang/crates.io-index"
457
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
458

Gavin Wood's avatar
Gavin Wood committed
459
460
[[package]]
name = "bitvec"
461
version = "0.17.4"
Gavin Wood's avatar
Gavin Wood committed
462
source = "registry+https://github.com/rust-lang/crates.io-index"
463
464
465
466
467
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
 "either",
 "radium",
]
Gavin Wood's avatar
Gavin Wood committed
468

469
470
[[package]]
name = "blake2"
471
version = "0.9.0"
472
source = "registry+https://github.com/rust-lang/crates.io-index"
473
checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471"
474
dependencies = [
475
476
 "byte-tools",
 "byteorder",
477
478
 "crypto-mac 0.8.0",
 "digest 0.9.0",
479
 "opaque-debug 0.2.3",
480
481
]

asynchronous rob's avatar
asynchronous rob committed
482
483
484
485
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
486
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
asynchronous rob's avatar
asynchronous rob committed
487
dependencies = [
488
489
 "arrayvec 0.4.12",
 "constant_time_eq",
asynchronous rob's avatar
asynchronous rob committed
490
491
]

Gavin Wood's avatar
Gavin Wood committed
492
493
[[package]]
name = "blake2b_simd"
494
version = "0.5.10"
Gavin Wood's avatar
Gavin Wood committed
495
source = "registry+https://github.com/rust-lang/crates.io-index"
496
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
Gavin Wood's avatar
Gavin Wood committed
497
dependencies = [
498
 "arrayref",
499
 "arrayvec 0.5.2",
500
 "constant_time_eq",
Gavin Wood's avatar
Gavin Wood committed
501
502
]

503
504
[[package]]
name = "block-buffer"
505
version = "0.7.3"
506
source = "registry+https://github.com/rust-lang/crates.io-index"
507
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
508
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
509
 "block-padding 0.1.5",
510
 "byte-tools",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
511
 "byteorder",
512
 "generic-array 0.12.3",
513
514
]

515
[[package]]
516
517
518
519
520
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
521
 "block-padding 0.2.1",
Pierre Krieger's avatar
Pierre Krieger committed
522
 "generic-array 0.14.4",
523
524
525
526
527
528
529
530
]

[[package]]
name = "block-cipher"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa136449e765dc7faa244561ccae839c394048667929af599b5d931ebe7b7f10"
dependencies = [
Pierre Krieger's avatar
Pierre Krieger committed
531
 "generic-array 0.14.4",
532
533
]

Shawn Tabrizi's avatar
Shawn Tabrizi committed
534
535
536
537
538
539
[[package]]
name = "block-cipher"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f337a3e6da609650eb74e02bc9fac7b735049f7623ab12f2e4c719316fcc7e80"
dependencies = [
Pierre Krieger's avatar
Pierre Krieger committed
540
 "generic-array 0.14.4",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
541
542
]

543
544
[[package]]
name = "block-padding"
545
version = "0.1.5"
546
source = "registry+https://github.com/rust-lang/crates.io-index"
547
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
548
dependencies = [
549
 "byte-tools",
550
551
]

Shawn Tabrizi's avatar
Shawn Tabrizi committed
552
553
554
555
556
557
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"

558
559
560
561
562
563
564
[[package]]
name = "blocking"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
dependencies = [
 "async-channel",
565
 "async-task",
566
567
 "atomic-waker",
 "fastrand",
568
 "futures-lite",
569
 "once_cell",
570
571
]

572
573
574
575
576
577
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"

578
579
[[package]]
name = "bstr"
580
version = "0.2.13"
581
source = "registry+https://github.com/rust-lang/crates.io-index"
582
checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
583
dependencies = [
584
 "memchr",
585
586
]

587
588
589
590
591
592
593
594
595
[[package]]
name = "build-helper"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f"
dependencies = [
 "semver 0.6.0",
]

596
597
[[package]]
name = "bumpalo"
598
version = "3.4.0"
599
source = "registry+https://github.com/rust-lang/crates.io-index"
600
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
601

602
603
[[package]]
name = "byte-slice-cast"
Gavin Wood's avatar
Gavin Wood committed
604
version = "0.3.5"
605
source = "registry+https://github.com/rust-lang/crates.io-index"
606
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
607

608
609
[[package]]
name = "byte-tools"
610
version = "0.3.1"
611
source = "registry+https://github.com/rust-lang/crates.io-index"
612
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
613

asynchronous rob's avatar
asynchronous rob committed
614
615
[[package]]
name = "byteorder"
616
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
617
source = "registry+https://github.com/rust-lang/crates.io-index"
618
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
619
620
621

[[package]]
name = "bytes"
622
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
623
source = "registry+https://github.com/rust-lang/crates.io-index"
624
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
625
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
626
 "byteorder",
627
628
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
629
630
]

Gavin Wood's avatar
Gavin Wood committed
631
632
[[package]]
name = "bytes"
633
version = "0.5.6"
Gavin Wood's avatar
Gavin Wood committed
634
source = "registry+https://github.com/rust-lang/crates.io-index"
635
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
636

637
638
639
640
641
642
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"

643
644
645
646
647
648
649
650
651
652
653
654
[[package]]
name = "cargo_metadata"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83f95cf4bf0dda0ac2e65371ae7215d0dce3c187613a9dbf23aaa9374186f97a"
dependencies = [
 "semver 0.11.0",
 "semver-parser 0.10.0",
 "serde",
 "serde_json",
]

asynchronous rob's avatar
asynchronous rob committed
655
656
[[package]]
name = "cc"
657
version = "1.0.58"
asynchronous rob's avatar
asynchronous rob committed
658
source = "registry+https://github.com/rust-lang/crates.io-index"
659
checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
660
dependencies = [
661
 "jobserver",
662
663
664
665
]

[[package]]
name = "cexpr"
666
version = "0.4.0"
667
source = "registry+https://github.com/rust-lang/crates.io-index"
668
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
669
dependencies = [
670
 "nom",
671
]
asynchronous rob's avatar
asynchronous rob committed
672
673
674

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

679
680
681
682
683
684
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

685
[[package]]
686
name = "chacha20"
687
version = "0.4.3"
688
source = "registry+https://github.com/rust-lang/crates.io-index"
689
checksum = "086c0f07ac275808b7bf9a39f2fd013aae1498be83632814c8c4e0bd53f2dc58"
690
dependencies = [
691
 "stream-cipher 0.4.1",
692
693
694
695
696
 "zeroize",
]

[[package]]
name = "chacha20poly1305"
697
version = "0.5.1"
698
source = "registry+https://github.com/rust-lang/crates.io-index"
699
checksum = "18b0c90556d8e3fec7cf18d84a2f53d27b21288f2fe481b830fadcf809e48205"
700
701
702
703
dependencies = [
 "aead",
 "chacha20",
 "poly1305",
704
 "stream-cipher 0.4.1",
705
 "zeroize",
706
707
]

asynchronous rob's avatar
asynchronous rob committed
708
709
[[package]]
name = "chrono"
710
version = "0.4.13"
asynchronous rob's avatar
asynchronous rob committed
711
source = "registry+https://github.com/rust-lang/crates.io-index"
712
checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
asynchronous rob's avatar
asynchronous rob committed
713
dependencies = [
714
715
 "js-sys",
 "num-integer",
716
 "num-traits 0.2.12",
717
718
 "time",
 "wasm-bindgen",
asynchronous rob's avatar
asynchronous rob committed
719
720
]

721
722
[[package]]
name = "clang-sys"
723
version = "0.29.3"
724
source = "registry+https://github.com/rust-lang/crates.io-index"
725
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
726
dependencies = [
727
728
729
 "glob",
 "libc",
 "libloading",
730
731
]

asynchronous rob's avatar
asynchronous rob committed
732
733
[[package]]
name = "clap"
734
version = "2.33.1"
asynchronous rob's avatar
asynchronous rob committed
735
source = "registry+https://github.com/rust-lang/crates.io-index"
736
checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
asynchronous rob's avatar
asynchronous rob committed
737
dependencies = [
738
739
740
741
742
743
744
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
745
746
]

asynchronous rob's avatar
asynchronous rob committed
747
748
749
750
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
751
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
752
dependencies = [
753
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
754
755
]

756
757
758
759
760
761
762
763
764
[[package]]
name = "cloudabi"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
dependencies = [
 "bitflags",
]

765
766
[[package]]
name = "color-eyre"
767
version = "0.5.10"
768
source = "registry+https://github.com/rust-lang/crates.io-index"
769
checksum = "7b29030875fd8376e4a28ef497790d5b4a7843d8d1396bf08ce46f5eec562c5c"
770
771
772
773
774
dependencies = [
 "backtrace",
 "color-spantrace",
 "eyre",
 "indenter",
775
 "once_cell",
776
777
778
779
780
781
 "owo-colors",
 "tracing-error",
]

[[package]]
name = "color-spantrace"
782
version = "0.1.6"
783
source = "registry+https://github.com/rust-lang/crates.io-index"
784
checksum = "b6eee477a4a8a72f4addd4de416eb56d54bc307b284d6601bafdee1f4ea462d1"
785
dependencies = [
786
787
 "once_cell",
 "owo-colors",
788
789
790
791
 "tracing-core",
 "tracing-error",
]

792
793
[[package]]
name = "concurrent-queue"
794
version = "1.2.2"
795
source = "registry+https://github.com/rust-lang/crates.io-index"
796
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
797
798
799
800
dependencies = [
 "cache-padded",
]

801
802
803
804
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
805
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
806
dependencies = [
807
 "cfg-if 0.1.10",
808
 "wasm-bindgen",
809
810
811
812
]

[[package]]
name = "console_log"
Pierre Krieger's avatar
Pierre Krieger committed
813
version = "0.2.0"
814
source = "registry+https://github.com/rust-lang/crates.io-index"
Pierre Krieger's avatar
Pierre Krieger committed
815
checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494"
816
dependencies = [
817
 "log",
818
 "web-sys",
819
820
]

asynchronous rob's avatar
asynchronous rob committed
821
822
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
823
version = "0.1.5"
asynchronous rob's avatar
asynchronous rob committed
824
source = "registry+https://github.com/rust-lang/crates.io-index"
825
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
asynchronous rob's avatar
asynchronous rob committed
826

827
828
[[package]]
name = "core-foundation"
Gavin Wood's avatar
Gavin Wood committed
829
version = "0.7.0"
830
source = "registry+https://github.com/rust-lang/crates.io-index"
831
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
832
dependencies = [
833
834
 "core-foundation-sys",
 "libc",
835
836
837
838
]

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

843
844
[[package]]
name = "cpuid-bool"
845
version = "0.1.0"
846
source = "registry+https://github.com/rust-lang/crates.io-index"
847
checksum = "6d375c433320f6c5057ae04a04376eef4d04ce2801448cf8863a78da99107be4"
848

Gavin Wood's avatar
Gavin Wood committed
849
[[package]]
Gavin Wood's avatar
Gavin Wood committed
850
name = "cranelift-bforest"
851
version = "0.66.0"
852
853
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dcc286b052ee24a1e5a222e7c1125e6010ad35b0f248709b9b3737a8fedcfdf"
Gavin Wood's avatar
Gavin Wood committed
854
dependencies = [
855
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
856
857
858
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
859
name = "cranelift-codegen"
860
version = "0.66.0"
861
862
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d9badfe36176cb653506091693bc2bb1970c9bddfcd6ec7fac404f7eaec6f38"
Gavin Wood's avatar
Gavin Wood committed
863
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
864
 "byteorder",