Cargo.lock 387 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
7
8
9
10
11
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
12
13
[[package]]
name = "adder"
14
version = "0.7.9"
asynchronous rob's avatar
asynchronous rob committed
15
dependencies = [
16
 "dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
17
 "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
18
 "polkadot-parachain 0.7.9",
19
 "sp-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
Kian Paimani's avatar
Kian Paimani committed
20
 "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
21
 "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
22
23
24
25
26
27
]

[[package]]
name = "adder-collator"
version = "0.1.0"
dependencies = [
28
 "adder 0.7.9",
29
 "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
30
 "exit-future 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
31
 "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
32
 "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
33
34
35
 "polkadot-collator 0.7.9",
 "polkadot-parachain 0.7.9",
 "polkadot-primitives 0.7.9",
36
37
38
 "sc-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
 "sc-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
 "sp-core 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
asynchronous rob's avatar
asynchronous rob committed
39
40
]

41
42
[[package]]
name = "adler32"
43
version = "1.0.4"
44
45
source = "registry+https://github.com/rust-lang/crates.io-index"

46
47
[[package]]
name = "aes-ctr"
48
version = "0.3.0"
49
50
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
51
52
 "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
53
 "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
54
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
55
56
57
58
]

[[package]]
name = "aes-soft"
59
version = "0.3.3"
60
61
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
62
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
63
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
64
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
65
66
67
68
]

[[package]]
name = "aesni"
69
version = "0.6.0"
70
71
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
72
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
73
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
74
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
75
76
]

77
78
[[package]]
name = "ahash"
79
version = "0.2.18"
80
81
82
83
84
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

85
86
[[package]]
name = "aho-corasick"
87
version = "0.7.6"
88
89
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
90
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
91
92
]

asynchronous rob's avatar
asynchronous rob committed
93
94
95
96
97
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
98
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
99
100
]

101
102
103
104
105
106
107
108
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

109
110
[[package]]
name = "anyhow"
111
version = "1.0.22"
112
113
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
114
115
116
117
118
119
120
121
[[package]]
name = "app_dirs"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
122
 "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
123
124
]

125
126
[[package]]
name = "arc-swap"
127
version = "0.4.4"
128
129
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
130
131
[[package]]
name = "arrayref"
132
version = "0.3.5"
asynchronous rob's avatar
asynchronous rob committed
133
134
135
136
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "arrayvec"
137
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
138
139
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
140
 "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
141
142
]

143
144
145
146
147
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
148
149
[[package]]
name = "asn1_der"
150
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
151
152
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
153
 "asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
154
155
156
157
]

[[package]]
name = "asn1_der_derive"
158
version = "0.1.2"
159
160
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
161
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
162
 "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
163
164
]

165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
[[package]]
name = "async-macros"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "async-std"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "broadcaster 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "async-task"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
208
209
[[package]]
name = "atty"
210
version = "0.2.13"
asynchronous rob's avatar
asynchronous rob committed
211
212
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
213
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
214
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
215
216
]

217
218
[[package]]
name = "autocfg"
Kian Paimani's avatar
Kian Paimani committed
219
version = "0.1.7"
220
221
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
222
223
[[package]]
name = "backtrace"
224
version = "0.3.40"
asynchronous rob's avatar
asynchronous rob committed
225
226
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
227
 "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
228
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
229
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
230
 "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
231
232
233
234
]

[[package]]
name = "backtrace-sys"
235
version = "0.1.32"
asynchronous rob's avatar
asynchronous rob committed
236
237
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
238
 "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
239
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
240
241
242
]

[[package]]
243
244
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
245
246
source = "registry+https://github.com/rust-lang/crates.io-index"

247
248
249
250
251
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
252
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
253
254
]

255
256
257
258
259
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gavin Wood's avatar
Gavin Wood committed
260
261
262
263
264
265
266
267
268
269
[[package]]
name = "bincode"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
]

270
271
[[package]]
name = "bindgen"
Gavin Wood's avatar
Gavin Wood committed
272
version = "0.49.2"
273
274
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
275
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
276
 "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
277
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
278
 "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)",
279
 "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
280
 "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
281
 "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
282
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
283
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
284
 "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
285
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
286
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
287
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
288
 "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
289
 "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
290
291
]

292
293
[[package]]
name = "bitflags"
294
version = "1.2.1"
295
296
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
297
[[package]]
298
299
name = "bitmask"
version = "0.5.0"
300
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
301

Gavin Wood's avatar
Gavin Wood committed
302
303
[[package]]
name = "bitvec"
304
version = "0.15.2"
Gavin Wood's avatar
Gavin Wood committed
305
306
source = "registry+https://github.com/rust-lang/crates.io-index"

307
308
[[package]]
name = "blake2"
Gavin Wood's avatar
Gavin Wood committed
309
version = "0.8.1"
310
311
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
312
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
313
 "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
314
 "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
315
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
316
317
]

asynchronous rob's avatar
asynchronous rob committed
318
319
320
321
322
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
323
 "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
324
 "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
325
326
]

Gavin Wood's avatar
Gavin Wood committed
327
328
329
330
331
332
333
334
335
336
[[package]]
name = "blake2b_simd"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

337
338
[[package]]
name = "block-buffer"
339
version = "0.7.3"
340
341
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
342
 "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
343
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
344
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
345
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
346
347
]

348
349
[[package]]
name = "block-cipher-trait"
350
version = "0.6.2"
351
352
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
353
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
354
355
]

356
357
[[package]]
name = "block-padding"
358
version = "0.1.5"
359
360
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
361
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
362
363
]

364
365
366
367
368
369
370
371
372
373
374
375
376
[[package]]
name = "broadcaster"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

377
378
379
380
381
[[package]]
name = "bs58"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
382
383
[[package]]
name = "bs58"
384
version = "0.3.0"
asynchronous rob's avatar
asynchronous rob committed
385
386
source = "registry+https://github.com/rust-lang/crates.io-index"

387
388
[[package]]
name = "bstr"
Gavin Wood's avatar
Gavin Wood committed
389
version = "0.2.8"
390
391
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
392
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
393
394
]

395
396
[[package]]
name = "bumpalo"
Gavin Wood's avatar
Gavin Wood committed
397
version = "2.6.0"
398
399
source = "registry+https://github.com/rust-lang/crates.io-index"

400
401
[[package]]
name = "byte-slice-cast"
402
version = "0.3.4"
403
404
source = "registry+https://github.com/rust-lang/crates.io-index"

405
406
[[package]]
name = "byte-tools"
407
version = "0.3.1"
408
409
410
411
412
413
414
source = "registry+https://github.com/rust-lang/crates.io-index"

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

asynchronous rob's avatar
asynchronous rob committed
415
416
[[package]]
name = "byteorder"
417
version = "1.3.2"
asynchronous rob's avatar
asynchronous rob committed
418
419
420
421
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "bytes"
422
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
423
424
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
425
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
426
 "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
427
 "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
428
429
]

Gavin Wood's avatar
Gavin Wood committed
430
431
432
433
434
[[package]]
name = "bytes"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

435
436
[[package]]
name = "c2-chacha"
Kian Paimani's avatar
Kian Paimani committed
437
version = "0.2.3"
438
439
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Kian Paimani's avatar
Kian Paimani committed
440
 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
441
442
]

443
444
445
446
447
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
448
449
[[package]]
name = "cc"
450
version = "1.0.47"
asynchronous rob's avatar
asynchronous rob committed
451
source = "registry+https://github.com/rust-lang/crates.io-index"
452
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
453
 "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
454
 "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
455
456
457
458
]

[[package]]
name = "cexpr"
459
version = "0.3.6"
460
461
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
462
 "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
463
]
asynchronous rob's avatar
asynchronous rob committed
464
465
466

[[package]]
name = "cfg-if"
467
version = "0.1.10"
asynchronous rob's avatar
asynchronous rob committed
468
469
470
471
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "chrono"
Gavin Wood's avatar
Gavin Wood committed
472
version = "0.4.9"
asynchronous rob's avatar
asynchronous rob committed
473
474
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
475
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
476
 "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
477
478
 "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
479
 "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
480
481
]

482
483
[[package]]
name = "clang-sys"
Gavin Wood's avatar
Gavin Wood committed
484
version = "0.28.1"
485
486
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
487
 "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
488
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
489
 "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
490
491
]

asynchronous rob's avatar
asynchronous rob committed
492
493
[[package]]
name = "clap"
494
version = "2.33.0"
asynchronous rob's avatar
asynchronous rob committed
495
496
497
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
498
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
499
500
501
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
502
 "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
503
 "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
504
505
506
507
508
509
510
]

[[package]]
name = "clear_on_drop"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
511
 "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
512
513
514
515
516
517
518
]

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
519
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
520
521
]

522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "console_log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)",
]

540
541
542
543
544
545
[[package]]
name = "const-random"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
546
 "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)",
547
548
549
550
551
552
553
]

[[package]]
name = "const-random-macro"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
554
 "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)",
thiolliere's avatar
thiolliere committed
555
 "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
556
557
]

asynchronous rob's avatar
asynchronous rob committed
558
559
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
560
version = "0.1.4"
asynchronous rob's avatar
asynchronous rob committed
561
562
source = "registry+https://github.com/rust-lang/crates.io-index"

Gavin Wood's avatar
Gavin Wood committed
563
[[package]]
Gavin Wood's avatar
Gavin Wood committed
564
name = "cranelift-bforest"
565
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
566
567
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
568
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
569
570
571
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
572
name = "cranelift-codegen"
573
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
574
575
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
576
577
578
579
580
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-bforest 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-codegen-meta 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
581
582
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
583
584
585
 "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
586
587
588
589
]

[[package]]
name = "cranelift-codegen-meta"
590
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
591
592
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
593
594
 "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
595
596
597
598
]

[[package]]
name = "cranelift-codegen-shared"
599
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
600
601
602
603
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "cranelift-entity"
604
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
605
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
606
607
608
609
610
611
dependencies = [
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "cranelift-frontend"
612
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
613
614
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
615
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
616
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
617
618
 "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
619
620
621
622
]

[[package]]
name = "cranelift-native"
623
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
624
625
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
626
627
628
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
629
630
631
632
]

[[package]]
name = "cranelift-wasm"
633
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
634
635
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
636
637
638
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
639
640
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
641
 "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
642
 "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
643
]
Gavin Wood's avatar
Gavin Wood committed
644

645
[[package]]
646
647
name = "crc32fast"
version = "1.2.0"
648
649
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
650
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
651
652
]

653
654
655
656
657
658
659
660
[[package]]
name = "crossbeam-channel"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

661
662
[[package]]
name = "crossbeam-deque"
663
version = "0.7.2"
664
665
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
666
667
 "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
668
669
]

asynchronous rob's avatar
asynchronous rob committed
670
671
[[package]]
name = "crossbeam-epoch"
672
version = "0.8.0"
asynchronous rob's avatar
asynchronous rob committed
673
674
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
675
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
676
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
677
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
678
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
679
 "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
680
 "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
681
682
]

683
684
685
686
687
[[package]]
name = "crossbeam-queue"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
688
 "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
689
690
]

691
692
693
694
695
696
697
698
[[package]]
name = "crossbeam-queue"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
699
700
[[package]]
name = "crossbeam-utils"
701
version = "0.6.6"
702
source = "registry+https://github.com/rust-lang/crates.io-index"
703
dependencies = [
704
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
705
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
706
]
707

708
709
710
711
712
713
714
715
716
717
[[package]]
name = "crossbeam-utils"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

718
719
[[package]]
name = "crunchy"
720
version = "0.2.2"
721
722
723
724
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "crypto-mac"
725
version = "0.7.0"
726
727
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
728
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
729
 "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
730
731
]

Gavin Wood's avatar
Gavin Wood committed
732
733
734
735
736
737
738
739
[[package]]
name = "ct-logs"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

740
741
[[package]]
name = "ctr"
742
version = "0.3.2"
743
744
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
745
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
746
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
747
748
]

asynchronous rob's avatar
asynchronous rob committed
749
750
[[package]]
name = "ctrlc"
751
version = "3.1.3"
752
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
753
dependencies = [
754
 "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
755
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
756
757
]

758
759
760
761
762
763
[[package]]
name = "cuckoofilter"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
764
 "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)",
765
766
]

767
768
[[package]]
name = "curve25519-dalek"
769
version = "1.2.3"
770
771
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
772
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
773
 "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
774
 "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
775
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
776
 "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
777
778
]

779
780
[[package]]
name = "data-encoding"
781
version = "2.1.2"
782
783
source = "registry+https://github.com/rust-lang/crates.io-index"

784
785
[[package]]
name = "derive_more"
786
version = "0.14.1"
787
788
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
789
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
790
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
791
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
792
 "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)",
793
794
]

795
796
797
798
799
800
801
802
803
804
805
806
807
[[package]]
name = "derive_more"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)",
]

808
809
[[package]]
name = "derive_more"
Gavin Wood's avatar
Gavin Wood committed
810
version = "0.99.2"
811
812
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
813
814
815
 "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
816
817
]

asynchronous rob's avatar
asynchronous rob committed
818
819
[[package]]
name = "difference"
820
version = "2.0.0"
asynchronous rob's avatar
asynchronous rob committed
821
822
source = "registry+https://github.com/rust-lang/crates.io-index"

823
824
[[package]]
name = "digest"
825
826
827
828
829
830
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
[[package]]
name = "directories"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "dirs-sys"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
 "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

851
852
853
[[package]]
name = "dlmalloc"
version = "0.1.3"
854
855
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
856
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
857
858
859
860
861
862
863
]

[[package]]
name = "dns-parser"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
864
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
865
866
867
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
868
869
870
871
872
[[package]]
name = "doc-comment"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gav Wood's avatar
Gav Wood committed
873
874
[[package]]
name = "ed25519-dalek"
875
version = "1.0.0-pre.2"
Gav Wood's avatar
Gav Wood committed
876
877
878
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
879
 "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
880
 "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
881
882
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gav Wood's avatar
Gav Wood committed
883
884
885
 "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
886
887
[[package]]
name = "either"
888
version = "1.5.3"
asynchronous rob's avatar
asynchronous rob committed
889
890
891
892
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "elastic-array"
893
version = "0.10.2"
asynchronous rob's avatar
asynchronous rob committed
894
895
896
897
898
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

899
900
901
902
903
904
905
906
[[package]]
name = "enum_primitive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
]

907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
[[package]]
name = "enumflags2"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "enumflags2_derive 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "enumflags2_derive"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

925
926
[[package]]
name = "env_logger"
927
version = "0.6.2"
928
929
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
930
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
931
 "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
932
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
933
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
934
 "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
935
936
]

937
938
[[package]]
name = "env_logger"
939
version = "0.7.1"
940
941
942
943
944
945
946
947
948
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
949
950
[[package]]
name = "environmental"
951
version = "1.0.2"
952
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
953

954
955
956
957
958
[[package]]
name = "erased-serde"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Kian Paimani's avatar
Kian Paimani committed
959
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
960
961
]

Gavin Wood's avatar
Gavin Wood committed
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
[[package]]
name = "errno"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "errno-dragonfly"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
981
982
983
984
985
986
987
988
[[package]]
name = "exit-future"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
989
990
[[package]]
name = "faerie"
991
version = "0.13.0"
Gavin Wood's avatar
Gavin Wood committed
992
993
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
994
995
 "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
996
997
 "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
998
 "scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
999
 "string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1000
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
For faster browsing, not all history is shown. View entire blame