Cargo.lock 192 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
38
39
 "block-cipher-trait",
 "byteorder 1.3.4",
 "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 1.3.4",
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
313
 "byteorder 1.3.4",
 "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
[[package]]
name = "block-buffer"
397
version = "0.7.3"
398
source = "registry+https://github.com/rust-lang/crates.io-index"
399
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
400
dependencies = [
401
402
403
404
 "block-padding",
 "byte-tools",
 "byteorder 1.3.4",
 "generic-array",
405
406
]

407
408
[[package]]
name = "block-cipher-trait"
409
version = "0.6.2"
410
source = "registry+https://github.com/rust-lang/crates.io-index"
411
checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
412
dependencies = [
413
 "generic-array",
414
415
]

416
417
[[package]]
name = "block-padding"
418
version = "0.1.5"
419
source = "registry+https://github.com/rust-lang/crates.io-index"
420
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
421
dependencies = [
422
 "byte-tools",
423
424
]

425
426
[[package]]
name = "broadcaster"
427
version = "1.0.0"
428
source = "registry+https://github.com/rust-lang/crates.io-index"
429
checksum = "d9c972e21e0d055a36cf73e4daae870941fe7a8abcd5ac3396aab9e4c126bd87"
430
dependencies = [
431
432
433
434
435
436
 "futures-channel",
 "futures-core",
 "futures-sink",
 "futures-util",
 "parking_lot 0.10.0",
 "slab",
437
438
]

asynchronous rob's avatar
asynchronous rob committed
439
440
[[package]]
name = "bs58"
441
version = "0.3.0"
asynchronous rob's avatar
asynchronous rob committed
442
source = "registry+https://github.com/rust-lang/crates.io-index"
443
checksum = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae"
asynchronous rob's avatar
asynchronous rob committed
444

445
446
[[package]]
name = "bstr"
447
version = "0.2.12"
448
source = "registry+https://github.com/rust-lang/crates.io-index"
449
checksum = "2889e6d50f394968c8bf4240dc3f2a7eb4680844d27308f798229ac9d4725f41"
450
dependencies = [
451
 "memchr",
452
453
]

454
455
[[package]]
name = "bumpalo"
456
version = "3.2.1"
457
source = "registry+https://github.com/rust-lang/crates.io-index"
458
checksum = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187"
459

460
461
[[package]]
name = "byte-slice-cast"
Gavin Wood's avatar
Gavin Wood committed
462
version = "0.3.5"
463
source = "registry+https://github.com/rust-lang/crates.io-index"
464
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
465

466
467
[[package]]
name = "byte-tools"
468
version = "0.3.1"
469
source = "registry+https://github.com/rust-lang/crates.io-index"
470
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
471
472
473
474
475

[[package]]
name = "byteorder"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
476
checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
477

asynchronous rob's avatar
asynchronous rob committed
478
479
[[package]]
name = "byteorder"
480
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
481
source = "registry+https://github.com/rust-lang/crates.io-index"
482
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
483
484
485

[[package]]
name = "bytes"
486
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
487
source = "registry+https://github.com/rust-lang/crates.io-index"
488
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
489
dependencies = [
490
491
492
 "byteorder 1.3.4",
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
493
494
]

Gavin Wood's avatar
Gavin Wood committed
495
496
[[package]]
name = "bytes"
Gavin Wood's avatar
Gavin Wood committed
497
version = "0.5.4"
Gavin Wood's avatar
Gavin Wood committed
498
source = "registry+https://github.com/rust-lang/crates.io-index"
499
checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
500

501
502
503
504
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
505
checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
506

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

[[package]]
name = "cexpr"
518
version = "0.4.0"
519
source = "registry+https://github.com/rust-lang/crates.io-index"
520
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
521
dependencies = [
522
 "nom",
523
]
asynchronous rob's avatar
asynchronous rob committed
524
525
526

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

531
532
533
534
[[package]]
name = "chacha20-poly1305-aead"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
535
checksum = "77d2058ba29594f69c75e8a9018e0485e3914ca5084e3613cd64529042f5423b"
536
dependencies = [
537
 "constant_time_eq",
538
539
]

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

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

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

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

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
592
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
593
dependencies = [
594
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
595
596
]

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

[[package]]
name = "console_log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
611
checksum = "1e7871d2947441b0fdd8e2bd1ce2a2f75304f896582c0d572162d48290683c48"
612
dependencies = [
613
614
 "log 0.4.8",
 "web-sys",
615
616
]

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

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

asynchronous rob's avatar
asynchronous rob committed
637
638
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
639
version = "0.1.5"
asynchronous rob's avatar
asynchronous rob committed
640
source = "registry+https://github.com/rust-lang/crates.io-index"
641
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
asynchronous rob's avatar
asynchronous rob committed
642

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

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

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

[[package]]
Gavin Wood's avatar
Gavin Wood committed
669
name = "cranelift-codegen"
670
version = "0.59.0"
Gavin Wood's avatar
Gavin Wood committed
671
source = "registry+https://github.com/rust-lang/crates.io-index"
672
checksum = "7853f77a6e4a33c67a69c40f5e1bb982bd2dc5c4a22e17e67b65bbccf9b33b2e"
Gavin Wood's avatar
Gavin Wood committed
673
dependencies = [
674
675
676
677
678
679
680
681
682
683
684
 "byteorder 1.3.4",
 "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
685
686
687
688
]

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

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

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

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

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

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

750
[[package]]
751
752
name = "crc32fast"
version = "1.2.0"
753
source = "registry+https://github.com/rust-lang/crates.io-index"
754
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
755
dependencies = [
756
 "cfg-if",
757
758
]

759
760
[[package]]
name = "crossbeam-channel"
761
version = "0.4.2"
762
source = "registry+https://github.com/rust-lang/crates.io-index"
763
checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"
764
dependencies = [
765
766
 "crossbeam-utils",
 "maybe-uninit",
767
768
]

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

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

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

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

816
817
[[package]]
name = "crunchy"
818
version = "0.2.2"
819
source = "registry+https://github.com/rust-lang/crates.io-index"
820
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
821
822
823

[[package]]
name = "crypto-mac"
824
version = "0.7.0"
825
source = "registry+https://github.com/rust-lang/crates.io-index"
826
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
827
dependencies = [
828
829
 "generic-array",
 "subtle 1.0.0",
830
831
]

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

841
842
[[package]]
name = "ctr"
843
version = "0.3.2"
844
source = "registry+https://github.com/rust-lang/crates.io-index"
845
checksum = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736"
846
dependencies = [
847
848
 "block-cipher-trait",
 "stream-cipher",
849
850
]

851
852
853
854
[[package]]
name = "cuckoofilter"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
855
checksum = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f"
856
dependencies = [
857
858
 "byteorder 0.5.3",
 "rand 0.3.23",
859
860
]

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

874
875
[[package]]
name = "data-encoding"
876
version = "2.2.0"
877
source = "registry+https://github.com/rust-lang/crates.io-index"
878
checksum = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788"
879

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

892
893
894
895
[[package]]
name = "derive_more"
version = "0.15.0"
source = "registry+https://gith