Cargo.lock 191 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 = "adler32"
15
version = "1.0.4"
16
source = "registry+https://github.com/rust-lang/crates.io-index"
17
checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
18

19
20
[[package]]
name = "aes-ctr"
21
version = "0.3.0"
22
source = "registry+https://github.com/rust-lang/crates.io-index"
23
checksum = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee"
24
dependencies = [
25
26
27
28
 "aes-soft",
 "aesni",
 "ctr",
 "stream-cipher",
29
30
31
32
]

[[package]]
name = "aes-soft"
33
version = "0.3.3"
34
source = "registry+https://github.com/rust-lang/crates.io-index"
35
checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d"
36
dependencies = [
37
 "block-cipher-trait",
38
 "byteorder",
39
 "opaque-debug",
40
41
42
43
]

[[package]]
name = "aesni"
44
version = "0.6.0"
45
source = "registry+https://github.com/rust-lang/crates.io-index"
46
checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100"
47
dependencies = [
48
49
50
 "block-cipher-trait",
 "opaque-debug",
 "stream-cipher",
51
52
]

53
54
[[package]]
name = "ahash"
55
version = "0.2.18"
56
source = "registry+https://github.com/rust-lang/crates.io-index"
57
checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"
58
dependencies = [
59
 "const-random",
60
61
]

62
63
[[package]]
name = "aho-corasick"
64
version = "0.7.10"
65
source = "registry+https://github.com/rust-lang/crates.io-index"
66
checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
67
dependencies = [
68
 "memchr",
69
70
]

71
72
73
74
[[package]]
name = "alga"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
75
checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
76
dependencies = [
77
78
79
 "approx",
 "num-complex",
 "num-traits 0.2.11",
80
81
]

asynchronous rob's avatar
asynchronous rob committed
82
83
84
85
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
86
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
asynchronous rob's avatar
asynchronous rob committed
87
dependencies = [
88
 "winapi 0.3.8",
asynchronous rob's avatar
asynchronous rob committed
89
90
]

91
92
93
94
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
95
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
96
dependencies = [
97
 "winapi 0.3.8",
98
99
]

100
101
[[package]]
name = "anyhow"
Gavin Wood's avatar
Gavin Wood committed
102
version = "1.0.27"
103
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
104
checksum = "013a6e0a2cbe3d20f9c60b65458f7a7f7a5e636c5d0f45a5a6aee5d4b1f01785"
105

asynchronous rob's avatar
asynchronous rob committed
106
107
108
109
[[package]]
name = "app_dirs"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
110
checksum = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d"
asynchronous rob's avatar
asynchronous rob committed
111
dependencies = [
112
113
114
115
 "ole32-sys",
 "shell32-sys",
 "winapi 0.2.8",
 "xdg",
asynchronous rob's avatar
asynchronous rob committed
116
117
]

118
119
120
121
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
122
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
123
dependencies = [
124
 "num-traits 0.2.11",
125
126
]

127
128
[[package]]
name = "arc-swap"
129
version = "0.4.5"
130
source = "registry+https://github.com/rust-lang/crates.io-index"
131
checksum = "d663a8e9a99154b5fb793032533f6328da35e23aac63d5c152279aa8ba356825"
132

asynchronous rob's avatar
asynchronous rob committed
133
134
[[package]]
name = "arrayref"
Gavin Wood's avatar
Gavin Wood committed
135
version = "0.3.6"
asynchronous rob's avatar
asynchronous rob committed
136
source = "registry+https://github.com/rust-lang/crates.io-index"
137
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
asynchronous rob's avatar
asynchronous rob committed
138
139
140

[[package]]
name = "arrayvec"
141
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
142
source = "registry+https://github.com/rust-lang/crates.io-index"
143
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
asynchronous rob's avatar
asynchronous rob committed
144
dependencies = [
145
 "nodrop",
asynchronous rob's avatar
asynchronous rob committed
146
147
]

148
149
150
151
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
152
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
153

asynchronous rob's avatar
asynchronous rob committed
154
155
[[package]]
name = "asn1_der"
156
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
157
source = "registry+https://github.com/rust-lang/crates.io-index"
158
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
asynchronous rob's avatar
asynchronous rob committed
159
dependencies = [
160
 "asn1_der_derive",
161
162
163
164
]

[[package]]
name = "asn1_der_derive"
165
version = "0.1.2"
166
source = "registry+https://github.com/rust-lang/crates.io-index"
167
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
168
dependencies = [
169
170
 "quote 1.0.3",
 "syn 1.0.17",
asynchronous rob's avatar
asynchronous rob committed
171
172
]

173
174
[[package]]
name = "assert_cmd"
Gavin Wood's avatar
Gavin Wood committed
175
version = "0.12.1"
176
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
177
checksum = "35ad62275a8bda1c2c9a9303aea121eb04204272d3be0735d5dc1f49eb9ff9a9"
178
dependencies = [
179
180
181
182
183
 "doc-comment",
 "escargot",
 "predicates",
 "predicates-core",
 "predicates-tree",
184
185
]

Gavin Wood's avatar
Gavin Wood committed
186
187
188
189
[[package]]
name = "assert_matches"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
190
checksum = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"
Gavin Wood's avatar
Gavin Wood committed
191

192
193
[[package]]
name = "async-std"
194
195
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
checksum = "538ecb01eb64eecd772087e5b6f7540cbc917f047727339a472dafed2185b267"
dependencies = [
 "async-task",
 "broadcaster",
 "crossbeam-channel",
 "crossbeam-deque",
 "crossbeam-utils",
 "futures-core",
 "futures-io",
 "futures-timer 2.0.2",
 "kv-log-macro",
 "log 0.4.8",
 "memchr",
 "mio",
 "mio-uds",
 "num_cpus",
 "once_cell",
 "pin-project-lite",
 "pin-utils",
 "slab",
216
217
218
219
]

[[package]]
name = "async-task"
Gavin Wood's avatar
Gavin Wood committed
220
version = "1.3.1"
221
source = "registry+https://github.com/rust-lang/crates.io-index"
222
checksum = "0ac2c016b079e771204030951c366db398864f5026f84a44dafb0ff20f02085d"
223
dependencies = [
224
225
 "libc",
 "winapi 0.3.8",
226
227
]

228
229
230
231
[[package]]
name = "async-tls"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
232
checksum = "6ce6977f57fa68da77ffe5542950d47e9c23d65f5bc7cb0a9f8700996913eec7"
233
dependencies = [
234
235
236
237
 "futures 0.3.4",
 "rustls 0.16.0",
 "webpki",
 "webpki-roots 0.17.0",
238
239
]

asynchronous rob's avatar
asynchronous rob committed
240
241
[[package]]
name = "atty"
Gavin Wood's avatar
Gavin Wood committed
242
version = "0.2.14"
asynchronous rob's avatar
asynchronous rob committed
243
source = "registry+https://github.com/rust-lang/crates.io-index"
244
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
asynchronous rob's avatar
asynchronous rob committed
245
dependencies = [
246
247
248
 "hermit-abi",
 "libc",
 "winapi 0.3.8",
asynchronous rob's avatar
asynchronous rob committed
249
250
]

251
252
[[package]]
name = "autocfg"
Kian Paimani's avatar
Kian Paimani committed
253
version = "0.1.7"
254
source = "registry+https://github.com/rust-lang/crates.io-index"
255
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
256

Gavin Wood's avatar
Gavin Wood committed
257
258
259
260
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
261
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
Gavin Wood's avatar
Gavin Wood committed
262

asynchronous rob's avatar
asynchronous rob committed
263
264
[[package]]
name = "backtrace"
265
version = "0.3.46"
asynchronous rob's avatar
asynchronous rob committed
266
source = "registry+https://github.com/rust-lang/crates.io-index"
267
checksum = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
asynchronous rob's avatar
asynchronous rob committed
268
dependencies = [
269
270
271
272
 "backtrace-sys",
 "cfg-if",
 "libc",
 "rustc-demangle",
asynchronous rob's avatar
asynchronous rob committed
273
274
275
276
]

[[package]]
name = "backtrace-sys"
277
version = "0.1.35"
asynchronous rob's avatar
asynchronous rob committed
278
source = "registry+https://github.com/rust-lang/crates.io-index"
279
checksum = "7de8aba10a69c8e8d7622c5710229485ec32e9d55fdad160ea559c086fdcd118"
asynchronous rob's avatar
asynchronous rob committed
280
dependencies = [
281
282
 "cc",
 "libc",
asynchronous rob's avatar
asynchronous rob committed
283
284
285
]

[[package]]
286
287
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
288
source = "registry+https://github.com/rust-lang/crates.io-index"
289
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
asynchronous rob's avatar
asynchronous rob committed
290

291
292
293
294
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
295
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
296
dependencies = [
297
 "byteorder",
298
299
]

300
301
302
303
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
304
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
305

Gavin Wood's avatar
Gavin Wood committed
306
307
[[package]]
name = "bincode"
Gavin Wood's avatar
Gavin Wood committed
308
version = "1.2.1"
Gavin Wood's avatar
Gavin Wood committed
309
source = "registry+https://github.com/rust-lang/crates.io-index"
310
checksum = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
Gavin Wood's avatar
Gavin Wood committed
311
dependencies = [
312
 "byteorder",
313
 "serde",
Gavin Wood's avatar
Gavin Wood committed
314
315
]

316
317
[[package]]
name = "bindgen"
318
version = "0.53.2"
319
source = "registry+https://github.com/rust-lang/crates.io-index"
320
checksum = "6bb26d6a69a335b8cb0e7c7e9775cd5666611dc50a37177c3f2cedcfc040e8c8"
321
dependencies = [
322
323
324
325
326
327
328
329
330
331
 "bitflags",
 "cexpr",
 "cfg-if",
 "clang-sys",
 "clap",
 "env_logger 0.7.1",
 "lazy_static",
 "lazycell",
 "log 0.4.8",
 "peeking_take_while",
Gavin Wood's avatar
Gavin Wood committed
332
 "proc-macro2 1.0.9",
333
334
335
336
337
 "quote 1.0.3",
 "regex",
 "rustc-hash",
 "shlex",
 "which",
338
339
]

340
341
[[package]]
name = "bitflags"
342
version = "1.2.1"
343
source = "registry+https://github.com/rust-lang/crates.io-index"
344
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
345

asynchronous rob's avatar
asynchronous rob committed
346
[[package]]
347
348
name = "bitmask"
version = "0.5.0"
349
source = "registry+https://github.com/rust-lang/crates.io-index"
350
checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
asynchronous rob's avatar
asynchronous rob committed
351

Gavin Wood's avatar
Gavin Wood committed
352
353
[[package]]
name = "bitvec"
354
version = "0.17.4"
Gavin Wood's avatar
Gavin Wood committed
355
source = "registry+https://github.com/rust-lang/crates.io-index"
356
357
358
359
360
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
 "either",
 "radium",
]
Gavin Wood's avatar
Gavin Wood committed
361

362
363
[[package]]
name = "blake2"
Gavin Wood's avatar
Gavin Wood committed
364
version = "0.8.1"
365
source = "registry+https://github.com/rust-lang/crates.io-index"
366
checksum = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330"
367
dependencies = [
368
369
370
371
 "byte-tools",
 "crypto-mac",
 "digest",
 "opaque-debug",
372
373
]

asynchronous rob's avatar
asynchronous rob committed
374
375
376
377
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
378
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
asynchronous rob's avatar
asynchronous rob committed
379
dependencies = [
380
381
 "arrayvec 0.4.12",
 "constant_time_eq",
asynchronous rob's avatar
asynchronous rob committed
382
383
]

Gavin Wood's avatar
Gavin Wood committed
384
385
[[package]]
name = "blake2b_simd"
Gavin Wood's avatar
Gavin Wood committed
386
version = "0.5.10"
Gavin Wood's avatar
Gavin Wood committed
387
source = "registry+https://github.com/rust-lang/crates.io-index"
388
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
Gavin Wood's avatar
Gavin Wood committed
389
dependencies = [
390
391
392
 "arrayref",
 "arrayvec 0.5.1",
 "constant_time_eq",
Gavin Wood's avatar
Gavin Wood committed
393
394
]

395
396
397
398
399
400
401
402
403
404
405
[[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",
]

406
407
[[package]]
name = "block-buffer"
408
version = "0.7.3"
409
source = "registry+https://github.com/rust-lang/crates.io-index"
410
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
411
dependencies = [
412
413
 "block-padding",
 "byte-tools",
414
 "byteorder",
415
 "generic-array",
416
417
]

418
419
[[package]]
name = "block-cipher-trait"
420
version = "0.6.2"
421
source = "registry+https://github.com/rust-lang/crates.io-index"
422
checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
423
dependencies = [
424
 "generic-array",
425
426
]

427
428
[[package]]
name = "block-padding"
429
version = "0.1.5"
430
source = "registry+https://github.com/rust-lang/crates.io-index"
431
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
432
dependencies = [
433
 "byte-tools",
434
435
]

436
437
[[package]]
name = "broadcaster"
438
version = "1.0.0"
439
source = "registry+https://github.com/rust-lang/crates.io-index"
440
checksum = "d9c972e21e0d055a36cf73e4daae870941fe7a8abcd5ac3396aab9e4c126bd87"
441
dependencies = [
442
443
444
445
446
447
 "futures-channel",
 "futures-core",
 "futures-sink",
 "futures-util",
 "parking_lot 0.10.0",
 "slab",
448
449
]

asynchronous rob's avatar
asynchronous rob committed
450
451
[[package]]
name = "bs58"
452
version = "0.3.0"
asynchronous rob's avatar
asynchronous rob committed
453
source = "registry+https://github.com/rust-lang/crates.io-index"
454
checksum = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae"
asynchronous rob's avatar
asynchronous rob committed
455

456
457
[[package]]
name = "bstr"
458
version = "0.2.12"
459
source = "registry+https://github.com/rust-lang/crates.io-index"
460
checksum = "2889e6d50f394968c8bf4240dc3f2a7eb4680844d27308f798229ac9d4725f41"
461
dependencies = [
462
 "memchr",
463
464
]

465
466
[[package]]
name = "bumpalo"
467
version = "3.2.1"
468
source = "registry+https://github.com/rust-lang/crates.io-index"
469
checksum = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187"
470

471
472
[[package]]
name = "byte-slice-cast"
Gavin Wood's avatar
Gavin Wood committed
473
version = "0.3.5"
474
source = "registry+https://github.com/rust-lang/crates.io-index"
475
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
476

477
478
[[package]]
name = "byte-tools"
479
version = "0.3.1"
480
source = "registry+https://github.com/rust-lang/crates.io-index"
481
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
482

asynchronous rob's avatar
asynchronous rob committed
483
484
[[package]]
name = "byteorder"
485
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
486
source = "registry+https://github.com/rust-lang/crates.io-index"
487
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
488
489
490

[[package]]
name = "bytes"
491
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
492
source = "registry+https://github.com/rust-lang/crates.io-index"
493
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
494
dependencies = [
495
 "byteorder",
496
497
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
498
499
]

Gavin Wood's avatar
Gavin Wood committed
500
501
[[package]]
name = "bytes"
Gavin Wood's avatar
Gavin Wood committed
502
version = "0.5.4"
Gavin Wood's avatar
Gavin Wood committed
503
source = "registry+https://github.com/rust-lang/crates.io-index"
504
checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
505

506
507
508
509
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
510
checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
511

asynchronous rob's avatar
asynchronous rob committed
512
513
[[package]]
name = "cc"
Gavin Wood's avatar
Gavin Wood committed
514
version = "1.0.50"
asynchronous rob's avatar
asynchronous rob committed
515
source = "registry+https://github.com/rust-lang/crates.io-index"
516
checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
517
dependencies = [
518
 "jobserver",
519
520
521
522
]

[[package]]
name = "cexpr"
523
version = "0.4.0"
524
source = "registry+https://github.com/rust-lang/crates.io-index"
525
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
526
dependencies = [
527
 "nom",
528
]
asynchronous rob's avatar
asynchronous rob committed
529
530
531

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

536
537
538
539
[[package]]
name = "chacha20-poly1305-aead"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
540
checksum = "77d2058ba29594f69c75e8a9018e0485e3914ca5084e3613cd64529042f5423b"
541
dependencies = [
542
 "constant_time_eq",
543
544
]

asynchronous rob's avatar
asynchronous rob committed
545
546
[[package]]
name = "chrono"
547
version = "0.4.11"
asynchronous rob's avatar
asynchronous rob committed
548
source = "registry+https://github.com/rust-lang/crates.io-index"
549
checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
asynchronous rob's avatar
asynchronous rob committed
550
dependencies = [
551
552
553
554
555
 "js-sys",
 "num-integer",
 "num-traits 0.2.11",
 "time",
 "wasm-bindgen",
asynchronous rob's avatar
asynchronous rob committed
556
557
]

558
559
[[package]]
name = "clang-sys"
Gavin Wood's avatar
Gavin Wood committed
560
version = "0.29.2"
561
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
562
checksum = "f92986241798376849e1a007827041fed9bb36195822c2049d18e174420e0534"
563
dependencies = [
564
565
566
 "glob",
 "libc",
 "libloading",
567
568
]

asynchronous rob's avatar
asynchronous rob committed
569
570
[[package]]
name = "clap"
571
version = "2.33.0"
asynchronous rob's avatar
asynchronous rob committed
572
source = "registry+https://github.com/rust-lang/crates.io-index"
573
checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
asynchronous rob's avatar
asynchronous rob committed
574
dependencies = [
575
576
577
578
579
580
581
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
582
583
584
585
586
587
]

[[package]]
name = "clear_on_drop"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
588
checksum = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17"
589
dependencies = [
590
 "cc",
asynchronous rob's avatar
asynchronous rob committed
591
592
593
594
595
596
]

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
597
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
598
dependencies = [
599
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
600
601
]

602
603
604
605
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
606
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
607
dependencies = [
608
609
 "cfg-if",
 "wasm-bindgen",
610
611
612
613
614
615
]

[[package]]
name = "console_log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
616
checksum = "1e7871d2947441b0fdd8e2bd1ce2a2f75304f896582c0d572162d48290683c48"
617
dependencies = [
618
619
 "log 0.4.8",
 "web-sys",
620
621
]

622
623
[[package]]
name = "const-random"
Gavin Wood's avatar
Gavin Wood committed
624
version = "0.1.8"
625
source = "registry+https://github.com/rust-lang/crates.io-index"
626
checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"
627
dependencies = [
628
629
 "const-random-macro",
 "proc-macro-hack",
630
631
632
633
]

[[package]]
name = "const-random-macro"
Gavin Wood's avatar
Gavin Wood committed
634
version = "0.1.8"
635
source = "registry+https://github.com/rust-lang/crates.io-index"
636
checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"
637
dependencies = [
638
639
 "getrandom",
 "proc-macro-hack",
640
641
]

asynchronous rob's avatar
asynchronous rob committed
642
643
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
644
version = "0.1.5"
asynchronous rob's avatar
asynchronous rob committed
645
source = "registry+https://github.com/rust-lang/crates.io-index"
646
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
asynchronous rob's avatar
asynchronous rob committed
647

648
649
[[package]]
name = "core-foundation"
Gavin Wood's avatar
Gavin Wood committed
650
version = "0.7.0"
651
source = "registry+https://github.com/rust-lang/crates.io-index"
652
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
653
dependencies = [
654
655
 "core-foundation-sys",
 "libc",
656
657
658
659
]

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

Gavin Wood's avatar
Gavin Wood committed
664
[[package]]
Gavin Wood's avatar
Gavin Wood committed
665
name = "cranelift-bforest"
666
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
667
source = "registry+https://github.com/rust-lang/crates.io-index"
668
checksum = "45a9c21f8042b9857bda93f6c1910b9f9f24100187a3d3d52f214a34e3dc5818"
Gavin Wood's avatar
Gavin Wood committed
669
dependencies = [
670
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
671
672
673
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
674
name = "cranelift-codegen"
675
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
676
source = "registry+https://github.com/rust-lang/crates.io-index"
677
checksum = "7853f77a6e4a33c67a69c40f5e1bb982bd2dc5c4a22e17e67b65bbccf9b33b2e"
Gavin Wood's avatar
Gavin Wood committed
678
dependencies = [
679
 "byteorder",
680
681
682
683
684
685
686
687
688
689
 "cranelift-bforest",
 "cranelift-codegen-meta",
 "cranelift-codegen-shared",
 "cranelift-entity",
 "gimli",
 "log 0.4.8",
 "serde",
 "smallvec 1.2.0",
 "target-lexicon",
 "thiserror",
Gavin Wood's avatar
Gavin Wood committed
690
691
692
693
]

[[package]]
name = "cranelift-codegen-meta"
694
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
695
source = "registry+https://github.com/rust-lang/crates.io-index"
696
checksum = "084cd6d5fb0d1da28acd72c199471bfb09acc703ec8f3bf07b1699584272a3b9"
Gavin Wood's avatar
Gavin Wood committed
697
dependencies = [
698
699
 "cranelift-codegen-shared",
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
700
701
702
703
]

[[package]]
name = "cranelift-codegen-shared"
704
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
705
source = "registry+https://github.com/rust-lang/crates.io-index"
706
checksum = "701b599783305a58c25027a4d73f2d6b599b2d8ef3f26677275f480b4d51e05d"
Gavin Wood's avatar
Gavin Wood committed
707
708
709

[[package]]
name = "cranelift-entity"
710
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
711
source = "registry+https://github.com/rust-lang/crates.io-index"
712
checksum = "b88e792b28e1ebbc0187b72ba5ba880dad083abe9231a99d19604d10c9e73f38"
Gavin Wood's avatar
Gavin Wood committed
713
dependencies = [
714
 "serde",
Gavin Wood's avatar
Gavin Wood committed
715
716
717
718
]

[[package]]
name = "cranelift-frontend"
719
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
720
source = "registry+https://github.com/rust-lang/crates.io-index"
721
checksum = "518344698fa6c976d853319218415fdfb4f1bc6b42d0b2e2df652e55dff1f778"
Gavin Wood's avatar
Gavin Wood committed
722
dependencies = [
723
724
725
726
 "cranelift-codegen",
 "log 0.4.8",
 "smallvec 1.2.0",
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
727
728
729
730
]

[[package]]
name = "cranelift-native"
731
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
732
source = "registry+https://github.com/rust-lang/crates.io-index"
733
checksum = "32daf082da21c0c05d93394ff4842c2ab7c4991b1f3186a1d952f8ac660edd0b"
Gavin Wood's avatar
Gavin Wood committed
734
dependencies = [
735
736
737
 "cranelift-codegen",
 "raw-cpuid",
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
738
739
740
741
]

[[package]]
name = "cranelift-wasm"
742
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
743
source = "registry+https://github.com/rust-lang/crates.io-index"
744
checksum = "e2aa816f554a3ef739a5d17ca3081a1f8983f04c944ea8ff60fb8d9dd8cd2d7b"
Gavin Wood's avatar
Gavin Wood committed
745
dependencies = [
746
747
748
749
750
751
752
 "cranelift-codegen",
 "cranelift-entity",
 "cranelift-frontend",
 "log 0.4.8",
 "serde",
 "thiserror",
 "wasmparser",
Gavin Wood's avatar
Gavin Wood committed
753
]
Gavin Wood's avatar
Gavin Wood committed
754

755
[[package]]
756
757
name = "crc32fast"
version = "1.2.0"
758
source = "registry+https://github.com/rust-lang/crates.io-index"
759
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
760
dependencies = [
761
 "cfg-if",
762
763
]

764
765
[[package]]
name = "crossbeam-channel"
766
version = "0.4.2"
767
source = "registry+https://github.com/rust-lang/crates.io-index"
768
checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"
769
dependencies = [
770
771
 "crossbeam-utils",
 "maybe-uninit",
772
773
]

774
775
[[package]]
name = "crossbeam-deque"
776
version = "0.7.3"
777
source = "registry+https://github.com/rust-lang/crates.io-index"
778
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
779
dependencies = [
780
781
782
 "crossbeam-epoch",
 "crossbeam-utils",
 "maybe-uninit",
783
784
]

asynchronous rob's avatar
asynchronous rob committed
785
786
[[package]]
name = "crossbeam-epoch"
787
version = "0.8.2"
asynchronous rob's avatar
asynchronous rob committed
788
source = "registry+https://github.com/rust-lang/crates.io-index"
789
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
asynchronous rob's avatar
asynchronous rob committed
790
dependencies = [
791
792
793
794
795
796
797
 "autocfg 1.0.0",
 "cfg-if",
 "crossbeam-utils",
 "lazy_static",
 "maybe-uninit",
 "memoffset",
 "scopeguard",
asynchronous rob's avatar
asynchronous rob committed
798
799
]

800
801
[[package]]
name = "crossbeam-queue"
Gavin Wood's avatar
Gavin Wood committed
802
version = "0.2.1"
803
source = "registry+https://github.com/rust-lang/crates.io-index"
804
checksum = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
805
dependencies = [
806
807
 "cfg-if",
 "crossbeam-utils",
808
]
809

810
811
[[package]]
name = "crossbeam-utils"
812
version = "0.7.2"
813
source = "registry+https://github.com/rust-lang/crates.io-index"
814
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
815
dependencies = [
816
817
818
 "autocfg 1.0.0",
 "cfg-if",
 "lazy_static",
819
820
]

821
822
[[package]]
name = "crunchy"
823
version = "0.2.2"
824
source = "registry+https://github.com/rust-lang/crates.io-index"
825
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
826
827
828

[[package]]
name = "crypto-mac"
829
version = "0.7.0"
830
source = "registry+https://github.com/rust-lang/crates.io-index"
831
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
832
dependencies = [
833
834
 "generic-array",
 "subtle 1.0.0",
835
836
]

Gavin Wood's avatar
Gavin Wood committed
837
838
839
840
[[package]]
name = "ct-logs"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
841
checksum = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113"
Gavin Wood's avatar
Gavin Wood committed
842
dependencies = [
843
 "sct",
Gavin Wood's avatar
Gavin Wood committed
844
845
]

846
847
[[package]]
name = "ctr"
848
version = "0.3.2"
849
source = "registry+https://github.com/rust-lang/crates.io-index"
850
checksum = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736"
851
dependencies = [
852
853
 "block-cipher-trait",
 "stream-cipher",
854
855
]

Gavin Wood's avatar
Gavin Wood committed
856
857
858
859
[[package]]
name = "curve25519-dalek"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
860
checksum = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839"
Gavin Wood's avatar
Gavin Wood committed
861
dependencies = [
862
 "byteorder",
863
864
865
866
 "digest",
 "rand_core 0.5.1",
 "subtle 2.2.2",
 "zeroize",
Gavin Wood's avatar
Gavin Wood committed
867
868
]

869
870
[[package]]
name = "data-encoding"
871
version = "2.2.0"
872
source = "registry+https://github.com/rust-lang/crates.io-index"
873
checksum = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788"
874

875
876
[[package]]
name = "derive_more"
877
version = "0.14.1"
878
source = "registry+https://github.com/rust-lang/crates.io-index"
879
checksum = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839"
880
dependencies = [
881
882
883
884
 "proc-macro2 0.4.30",
 "quote 0.6.13",
 "rustc_version",
 "syn 0.15.44",
885
886
]