scale.rb 0.2.14 → 0.2.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Cargo.lock +2007 -11
- data/Cargo.toml +9 -2
- data/Gemfile.lock +15 -9
- data/exe/scale +9 -0
- data/lib/helper.rb +126 -0
- data/lib/metadata/metadata.rb +14 -0
- data/lib/scale.rb +25 -9
- data/lib/scale/base.rb +5 -8
- data/lib/scale/block.rb +11 -25
- data/lib/scale/types.rb +18 -0
- data/lib/scale/version.rb +1 -1
- data/lib/substrate_client.rb +159 -0
- data/lib/type_registry/{crab-28.json → crab.json} +394 -127
- data/lib/type_registry/darwinia.json +701 -136
- data/scale.gemspec +3 -2
- data/scripts/block_events.rb +2 -3
- data/src/lib.rs +42 -1
- data/src/storage_key.rs +41 -0
- metadata +30 -15
- data/.DS_Store +0 -0
- data/lib/type_registry/darwinia-8.json +0 -662
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b38b65d1ea5092568ae98b86065978939d3c3f60829a088ea14b1e5abb1c23d0
|
4
|
+
data.tar.gz: 772676182927f44452222f68a7a9ae5d7142a00ad85e9dcc592619f0018228f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99702c4de1d223a8d2b2074ca4807f9c9b96885f589233d13c0246e4ea0b168b29c4420d1c0c6cde250374b43314fde5167a284c3784d1e93a76f68f77ae9e6c
|
7
|
+
data.tar.gz: af40a250532946cb1baa14f438e7138bbac3e4c74b5ec7ea23e4488ed3c0d0c71499f6f64831ae9d6e422a675783a7ecdf4bbd81355975b02a04bbe6a292f505
|
data/.gitignore
CHANGED
data/Cargo.lock
CHANGED
@@ -1,10 +1,82 @@
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
2
2
|
# It is not intended for manual editing.
|
3
|
+
[[package]]
|
4
|
+
name = "Inflector"
|
5
|
+
version = "0.11.4"
|
6
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
7
|
+
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
|
8
|
+
dependencies = [
|
9
|
+
"lazy_static",
|
10
|
+
"regex",
|
11
|
+
]
|
12
|
+
|
3
13
|
[[package]]
|
4
14
|
name = "SCALE-testing-interface"
|
5
15
|
version = "0.1.0"
|
6
16
|
dependencies = [
|
17
|
+
"frame-support",
|
7
18
|
"parity-scale-codec",
|
19
|
+
"sp-core",
|
20
|
+
]
|
21
|
+
|
22
|
+
[[package]]
|
23
|
+
name = "addr2line"
|
24
|
+
version = "0.14.1"
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
26
|
+
checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
|
27
|
+
dependencies = [
|
28
|
+
"gimli",
|
29
|
+
]
|
30
|
+
|
31
|
+
[[package]]
|
32
|
+
name = "adler"
|
33
|
+
version = "0.2.3"
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
+
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
|
36
|
+
|
37
|
+
[[package]]
|
38
|
+
name = "ahash"
|
39
|
+
version = "0.4.7"
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
41
|
+
checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
|
42
|
+
|
43
|
+
[[package]]
|
44
|
+
name = "aho-corasick"
|
45
|
+
version = "0.7.15"
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
+
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
|
48
|
+
dependencies = [
|
49
|
+
"memchr",
|
50
|
+
]
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "ansi_term"
|
54
|
+
version = "0.12.1"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
57
|
+
dependencies = [
|
58
|
+
"winapi",
|
59
|
+
]
|
60
|
+
|
61
|
+
[[package]]
|
62
|
+
name = "anyhow"
|
63
|
+
version = "1.0.38"
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
65
|
+
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
|
66
|
+
|
67
|
+
[[package]]
|
68
|
+
name = "arrayref"
|
69
|
+
version = "0.3.6"
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
71
|
+
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
72
|
+
|
73
|
+
[[package]]
|
74
|
+
name = "arrayvec"
|
75
|
+
version = "0.4.12"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
|
78
|
+
dependencies = [
|
79
|
+
"nodrop",
|
8
80
|
]
|
9
81
|
|
10
82
|
[[package]]
|
@@ -13,11 +85,98 @@ version = "0.5.1"
|
|
13
85
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
14
86
|
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
15
87
|
|
88
|
+
[[package]]
|
89
|
+
name = "async-trait"
|
90
|
+
version = "0.1.42"
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
92
|
+
checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
|
93
|
+
dependencies = [
|
94
|
+
"proc-macro2",
|
95
|
+
"quote",
|
96
|
+
"syn",
|
97
|
+
]
|
98
|
+
|
99
|
+
[[package]]
|
100
|
+
name = "autocfg"
|
101
|
+
version = "1.0.1"
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
+
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
104
|
+
|
105
|
+
[[package]]
|
106
|
+
name = "backtrace"
|
107
|
+
version = "0.3.56"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc"
|
110
|
+
dependencies = [
|
111
|
+
"addr2line",
|
112
|
+
"cfg-if 1.0.0",
|
113
|
+
"libc",
|
114
|
+
"miniz_oxide",
|
115
|
+
"object",
|
116
|
+
"rustc-demangle",
|
117
|
+
]
|
118
|
+
|
119
|
+
[[package]]
|
120
|
+
name = "base58"
|
121
|
+
version = "0.1.0"
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
+
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
|
124
|
+
|
125
|
+
[[package]]
|
126
|
+
name = "bitflags"
|
127
|
+
version = "1.2.1"
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
129
|
+
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
130
|
+
|
16
131
|
[[package]]
|
17
132
|
name = "bitvec"
|
18
|
-
version = "0.
|
133
|
+
version = "0.17.4"
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
+
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
|
136
|
+
dependencies = [
|
137
|
+
"either",
|
138
|
+
"radium",
|
139
|
+
]
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "blake2-rfc"
|
143
|
+
version = "0.2.18"
|
19
144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
-
checksum = "
|
145
|
+
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
|
146
|
+
dependencies = [
|
147
|
+
"arrayvec 0.4.12",
|
148
|
+
"constant_time_eq",
|
149
|
+
]
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "block-buffer"
|
153
|
+
version = "0.7.3"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
|
156
|
+
dependencies = [
|
157
|
+
"block-padding",
|
158
|
+
"byte-tools",
|
159
|
+
"byteorder",
|
160
|
+
"generic-array 0.12.3",
|
161
|
+
]
|
162
|
+
|
163
|
+
[[package]]
|
164
|
+
name = "block-buffer"
|
165
|
+
version = "0.9.0"
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
167
|
+
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
|
168
|
+
dependencies = [
|
169
|
+
"generic-array 0.14.4",
|
170
|
+
]
|
171
|
+
|
172
|
+
[[package]]
|
173
|
+
name = "block-padding"
|
174
|
+
version = "0.1.5"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
|
177
|
+
dependencies = [
|
178
|
+
"byte-tools",
|
179
|
+
]
|
21
180
|
|
22
181
|
[[package]]
|
23
182
|
name = "byte-slice-cast"
|
@@ -26,19 +185,1856 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
185
|
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
|
27
186
|
|
28
187
|
[[package]]
|
29
|
-
name = "
|
30
|
-
version = "
|
188
|
+
name = "byte-tools"
|
189
|
+
version = "0.3.1"
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
191
|
+
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
|
192
|
+
|
193
|
+
[[package]]
|
194
|
+
name = "byteorder"
|
195
|
+
version = "1.4.2"
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
197
|
+
checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
|
198
|
+
|
199
|
+
[[package]]
|
200
|
+
name = "cfg-if"
|
201
|
+
version = "0.1.10"
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
203
|
+
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
204
|
+
|
205
|
+
[[package]]
|
206
|
+
name = "cfg-if"
|
207
|
+
version = "1.0.0"
|
31
208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
32
|
-
checksum = "
|
209
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
210
|
+
|
211
|
+
[[package]]
|
212
|
+
name = "chrono"
|
213
|
+
version = "0.4.19"
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
215
|
+
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
|
33
216
|
dependencies = [
|
34
|
-
"
|
35
|
-
"
|
36
|
-
"
|
217
|
+
"libc",
|
218
|
+
"num-integer",
|
219
|
+
"num-traits",
|
220
|
+
"time",
|
221
|
+
"winapi",
|
222
|
+
]
|
223
|
+
|
224
|
+
[[package]]
|
225
|
+
name = "constant_time_eq"
|
226
|
+
version = "0.1.5"
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
229
|
+
|
230
|
+
[[package]]
|
231
|
+
name = "cpuid-bool"
|
232
|
+
version = "0.1.2"
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
+
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
|
235
|
+
|
236
|
+
[[package]]
|
237
|
+
name = "crunchy"
|
238
|
+
version = "0.2.2"
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
241
|
+
|
242
|
+
[[package]]
|
243
|
+
name = "crypto-mac"
|
244
|
+
version = "0.7.0"
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
+
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
|
247
|
+
dependencies = [
|
248
|
+
"generic-array 0.12.3",
|
249
|
+
"subtle 1.0.0",
|
250
|
+
]
|
251
|
+
|
252
|
+
[[package]]
|
253
|
+
name = "crypto-mac"
|
254
|
+
version = "0.8.0"
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
256
|
+
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
|
257
|
+
dependencies = [
|
258
|
+
"generic-array 0.14.4",
|
259
|
+
"subtle 2.4.0",
|
260
|
+
]
|
261
|
+
|
262
|
+
[[package]]
|
263
|
+
name = "curve25519-dalek"
|
264
|
+
version = "2.1.2"
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
+
checksum = "434e1720189a637d44fe464f4df1e6eb900b4835255b14354497c78af37d9bb8"
|
267
|
+
dependencies = [
|
268
|
+
"byteorder",
|
269
|
+
"digest 0.8.1",
|
270
|
+
"rand_core 0.5.1",
|
271
|
+
"subtle 2.4.0",
|
272
|
+
"zeroize",
|
273
|
+
]
|
274
|
+
|
275
|
+
[[package]]
|
276
|
+
name = "curve25519-dalek"
|
277
|
+
version = "3.0.2"
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
+
checksum = "f627126b946c25a4638eec0ea634fc52506dea98db118aae985118ce7c3d723f"
|
280
|
+
dependencies = [
|
281
|
+
"byteorder",
|
282
|
+
"digest 0.9.0",
|
283
|
+
"rand_core 0.5.1",
|
284
|
+
"subtle 2.4.0",
|
285
|
+
"zeroize",
|
286
|
+
]
|
287
|
+
|
288
|
+
[[package]]
|
289
|
+
name = "derive_more"
|
290
|
+
version = "0.99.11"
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
+
checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
|
293
|
+
dependencies = [
|
294
|
+
"proc-macro2",
|
295
|
+
"quote",
|
296
|
+
"syn",
|
297
|
+
]
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "digest"
|
301
|
+
version = "0.8.1"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
|
304
|
+
dependencies = [
|
305
|
+
"generic-array 0.12.3",
|
306
|
+
]
|
307
|
+
|
308
|
+
[[package]]
|
309
|
+
name = "digest"
|
310
|
+
version = "0.9.0"
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
+
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
313
|
+
dependencies = [
|
314
|
+
"generic-array 0.14.4",
|
315
|
+
]
|
316
|
+
|
317
|
+
[[package]]
|
318
|
+
name = "dyn-clonable"
|
319
|
+
version = "0.9.0"
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
321
|
+
checksum = "4e9232f0e607a262ceb9bd5141a3dfb3e4db6994b31989bbfd845878cba59fd4"
|
322
|
+
dependencies = [
|
323
|
+
"dyn-clonable-impl",
|
324
|
+
"dyn-clone",
|
325
|
+
]
|
326
|
+
|
327
|
+
[[package]]
|
328
|
+
name = "dyn-clonable-impl"
|
329
|
+
version = "0.9.0"
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
+
checksum = "558e40ea573c374cf53507fd240b7ee2f5477df7cfebdb97323ec61c719399c5"
|
332
|
+
dependencies = [
|
333
|
+
"proc-macro2",
|
334
|
+
"quote",
|
335
|
+
"syn",
|
336
|
+
]
|
337
|
+
|
338
|
+
[[package]]
|
339
|
+
name = "dyn-clone"
|
340
|
+
version = "1.0.4"
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
+
checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf"
|
343
|
+
|
344
|
+
[[package]]
|
345
|
+
name = "ed25519"
|
346
|
+
version = "1.0.3"
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
+
checksum = "37c66a534cbb46ab4ea03477eae19d5c22c01da8258030280b7bd9d8433fb6ef"
|
349
|
+
dependencies = [
|
350
|
+
"signature",
|
351
|
+
]
|
352
|
+
|
353
|
+
[[package]]
|
354
|
+
name = "ed25519-dalek"
|
355
|
+
version = "1.0.1"
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
+
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
|
358
|
+
dependencies = [
|
359
|
+
"curve25519-dalek 3.0.2",
|
360
|
+
"ed25519",
|
361
|
+
"rand 0.7.3",
|
37
362
|
"serde",
|
363
|
+
"sha2 0.9.2",
|
364
|
+
"zeroize",
|
38
365
|
]
|
39
366
|
|
40
367
|
[[package]]
|
41
|
-
name = "
|
42
|
-
version = "1.
|
368
|
+
name = "either"
|
369
|
+
version = "1.6.1"
|
43
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
-
checksum = "
|
371
|
+
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
372
|
+
|
373
|
+
[[package]]
|
374
|
+
name = "environmental"
|
375
|
+
version = "1.1.2"
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
+
checksum = "6576a1755ddffd988788025e75bce9e74b018f7cc226198fe931d077911c6d7e"
|
378
|
+
|
379
|
+
[[package]]
|
380
|
+
name = "fake-simd"
|
381
|
+
version = "0.1.2"
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
+
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
384
|
+
|
385
|
+
[[package]]
|
386
|
+
name = "fixed-hash"
|
387
|
+
version = "0.7.0"
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
+
checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c"
|
390
|
+
dependencies = [
|
391
|
+
"byteorder",
|
392
|
+
"rand 0.8.2",
|
393
|
+
"rustc-hex",
|
394
|
+
"static_assertions",
|
395
|
+
]
|
396
|
+
|
397
|
+
[[package]]
|
398
|
+
name = "frame-metadata"
|
399
|
+
version = "12.0.1"
|
400
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
401
|
+
dependencies = [
|
402
|
+
"parity-scale-codec",
|
403
|
+
"serde",
|
404
|
+
"sp-core",
|
405
|
+
"sp-std",
|
406
|
+
]
|
407
|
+
|
408
|
+
[[package]]
|
409
|
+
name = "frame-support"
|
410
|
+
version = "2.0.1"
|
411
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
412
|
+
dependencies = [
|
413
|
+
"bitflags",
|
414
|
+
"frame-metadata",
|
415
|
+
"frame-support-procedural",
|
416
|
+
"impl-trait-for-tuples",
|
417
|
+
"log",
|
418
|
+
"once_cell",
|
419
|
+
"parity-scale-codec",
|
420
|
+
"paste",
|
421
|
+
"serde",
|
422
|
+
"smallvec",
|
423
|
+
"sp-arithmetic",
|
424
|
+
"sp-core",
|
425
|
+
"sp-inherents",
|
426
|
+
"sp-io",
|
427
|
+
"sp-runtime",
|
428
|
+
"sp-state-machine",
|
429
|
+
"sp-std",
|
430
|
+
"sp-tracing",
|
431
|
+
]
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "frame-support-procedural"
|
435
|
+
version = "2.0.1"
|
436
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
437
|
+
dependencies = [
|
438
|
+
"Inflector",
|
439
|
+
"frame-support-procedural-tools",
|
440
|
+
"proc-macro2",
|
441
|
+
"quote",
|
442
|
+
"syn",
|
443
|
+
]
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "frame-support-procedural-tools"
|
447
|
+
version = "2.0.1"
|
448
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
449
|
+
dependencies = [
|
450
|
+
"frame-support-procedural-tools-derive",
|
451
|
+
"proc-macro-crate",
|
452
|
+
"proc-macro2",
|
453
|
+
"quote",
|
454
|
+
"syn",
|
455
|
+
]
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "frame-support-procedural-tools-derive"
|
459
|
+
version = "2.0.1"
|
460
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
461
|
+
dependencies = [
|
462
|
+
"proc-macro2",
|
463
|
+
"quote",
|
464
|
+
"syn",
|
465
|
+
]
|
466
|
+
|
467
|
+
[[package]]
|
468
|
+
name = "futures"
|
469
|
+
version = "0.3.12"
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
+
checksum = "da9052a1a50244d8d5aa9bf55cbc2fb6f357c86cc52e46c62ed390a7180cf150"
|
472
|
+
dependencies = [
|
473
|
+
"futures-channel",
|
474
|
+
"futures-core",
|
475
|
+
"futures-executor",
|
476
|
+
"futures-io",
|
477
|
+
"futures-sink",
|
478
|
+
"futures-task",
|
479
|
+
"futures-util",
|
480
|
+
]
|
481
|
+
|
482
|
+
[[package]]
|
483
|
+
name = "futures-channel"
|
484
|
+
version = "0.3.12"
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
+
checksum = "f2d31b7ec7efab6eefc7c57233bb10b847986139d88cc2f5a02a1ae6871a1846"
|
487
|
+
dependencies = [
|
488
|
+
"futures-core",
|
489
|
+
"futures-sink",
|
490
|
+
]
|
491
|
+
|
492
|
+
[[package]]
|
493
|
+
name = "futures-core"
|
494
|
+
version = "0.3.12"
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
496
|
+
checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65"
|
497
|
+
|
498
|
+
[[package]]
|
499
|
+
name = "futures-executor"
|
500
|
+
version = "0.3.12"
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
+
checksum = "e9e59fdc009a4b3096bf94f740a0f2424c082521f20a9b08c5c07c48d90fd9b9"
|
503
|
+
dependencies = [
|
504
|
+
"futures-core",
|
505
|
+
"futures-task",
|
506
|
+
"futures-util",
|
507
|
+
"num_cpus",
|
508
|
+
]
|
509
|
+
|
510
|
+
[[package]]
|
511
|
+
name = "futures-io"
|
512
|
+
version = "0.3.12"
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
+
checksum = "28be053525281ad8259d47e4de5de657b25e7bac113458555bb4b70bc6870500"
|
515
|
+
|
516
|
+
[[package]]
|
517
|
+
name = "futures-macro"
|
518
|
+
version = "0.3.12"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "c287d25add322d9f9abdcdc5927ca398917996600182178774032e9f8258fedd"
|
521
|
+
dependencies = [
|
522
|
+
"proc-macro-hack",
|
523
|
+
"proc-macro2",
|
524
|
+
"quote",
|
525
|
+
"syn",
|
526
|
+
]
|
527
|
+
|
528
|
+
[[package]]
|
529
|
+
name = "futures-sink"
|
530
|
+
version = "0.3.12"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "caf5c69029bda2e743fddd0582d1083951d65cc9539aebf8812f36c3491342d6"
|
533
|
+
|
534
|
+
[[package]]
|
535
|
+
name = "futures-task"
|
536
|
+
version = "0.3.12"
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
538
|
+
checksum = "13de07eb8ea81ae445aca7b69f5f7bf15d7bf4912d8ca37d6645c77ae8a58d86"
|
539
|
+
dependencies = [
|
540
|
+
"once_cell",
|
541
|
+
]
|
542
|
+
|
543
|
+
[[package]]
|
544
|
+
name = "futures-util"
|
545
|
+
version = "0.3.12"
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
+
checksum = "632a8cd0f2a4b3fdea1657f08bde063848c3bd00f9bbf6e256b8be78802e624b"
|
548
|
+
dependencies = [
|
549
|
+
"futures-channel",
|
550
|
+
"futures-core",
|
551
|
+
"futures-io",
|
552
|
+
"futures-macro",
|
553
|
+
"futures-sink",
|
554
|
+
"futures-task",
|
555
|
+
"memchr",
|
556
|
+
"pin-project-lite",
|
557
|
+
"pin-utils",
|
558
|
+
"proc-macro-hack",
|
559
|
+
"proc-macro-nested",
|
560
|
+
"slab",
|
561
|
+
]
|
562
|
+
|
563
|
+
[[package]]
|
564
|
+
name = "generic-array"
|
565
|
+
version = "0.12.3"
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
+
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
|
568
|
+
dependencies = [
|
569
|
+
"typenum",
|
570
|
+
]
|
571
|
+
|
572
|
+
[[package]]
|
573
|
+
name = "generic-array"
|
574
|
+
version = "0.14.4"
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
+
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
|
577
|
+
dependencies = [
|
578
|
+
"typenum",
|
579
|
+
"version_check",
|
580
|
+
]
|
581
|
+
|
582
|
+
[[package]]
|
583
|
+
name = "getrandom"
|
584
|
+
version = "0.1.16"
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
+
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
587
|
+
dependencies = [
|
588
|
+
"cfg-if 1.0.0",
|
589
|
+
"libc",
|
590
|
+
"wasi 0.9.0+wasi-snapshot-preview1",
|
591
|
+
]
|
592
|
+
|
593
|
+
[[package]]
|
594
|
+
name = "getrandom"
|
595
|
+
version = "0.2.2"
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
+
checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
|
598
|
+
dependencies = [
|
599
|
+
"cfg-if 1.0.0",
|
600
|
+
"libc",
|
601
|
+
"wasi 0.10.1+wasi-snapshot-preview1",
|
602
|
+
]
|
603
|
+
|
604
|
+
[[package]]
|
605
|
+
name = "gimli"
|
606
|
+
version = "0.23.0"
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
+
checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce"
|
609
|
+
|
610
|
+
[[package]]
|
611
|
+
name = "hash-db"
|
612
|
+
version = "0.15.2"
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
+
checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"
|
615
|
+
|
616
|
+
[[package]]
|
617
|
+
name = "hash256-std-hasher"
|
618
|
+
version = "0.15.2"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2"
|
621
|
+
dependencies = [
|
622
|
+
"crunchy",
|
623
|
+
]
|
624
|
+
|
625
|
+
[[package]]
|
626
|
+
name = "hashbrown"
|
627
|
+
version = "0.9.1"
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
+
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
|
630
|
+
dependencies = [
|
631
|
+
"ahash",
|
632
|
+
]
|
633
|
+
|
634
|
+
[[package]]
|
635
|
+
name = "hermit-abi"
|
636
|
+
version = "0.1.18"
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
638
|
+
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
|
639
|
+
dependencies = [
|
640
|
+
"libc",
|
641
|
+
]
|
642
|
+
|
643
|
+
[[package]]
|
644
|
+
name = "hex"
|
645
|
+
version = "0.4.2"
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
+
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
|
648
|
+
|
649
|
+
[[package]]
|
650
|
+
name = "hmac"
|
651
|
+
version = "0.7.1"
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
653
|
+
checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
|
654
|
+
dependencies = [
|
655
|
+
"crypto-mac 0.7.0",
|
656
|
+
"digest 0.8.1",
|
657
|
+
]
|
658
|
+
|
659
|
+
[[package]]
|
660
|
+
name = "hmac"
|
661
|
+
version = "0.8.1"
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
+
checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
|
664
|
+
dependencies = [
|
665
|
+
"crypto-mac 0.8.0",
|
666
|
+
"digest 0.9.0",
|
667
|
+
]
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "hmac-drbg"
|
671
|
+
version = "0.2.0"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b"
|
674
|
+
dependencies = [
|
675
|
+
"digest 0.8.1",
|
676
|
+
"generic-array 0.12.3",
|
677
|
+
"hmac 0.7.1",
|
678
|
+
]
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "impl-codec"
|
682
|
+
version = "0.4.2"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53"
|
685
|
+
dependencies = [
|
686
|
+
"parity-scale-codec",
|
687
|
+
]
|
688
|
+
|
689
|
+
[[package]]
|
690
|
+
name = "impl-serde"
|
691
|
+
version = "0.3.1"
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
|
+
checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f"
|
694
|
+
dependencies = [
|
695
|
+
"serde",
|
696
|
+
]
|
697
|
+
|
698
|
+
[[package]]
|
699
|
+
name = "impl-trait-for-tuples"
|
700
|
+
version = "0.2.0"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
checksum = "6f65a8ecf74feeacdab8d38cb129e550ca871cccaa7d1921d8636ecd75534903"
|
703
|
+
dependencies = [
|
704
|
+
"proc-macro2",
|
705
|
+
"quote",
|
706
|
+
"syn",
|
707
|
+
]
|
708
|
+
|
709
|
+
[[package]]
|
710
|
+
name = "instant"
|
711
|
+
version = "0.1.9"
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
+
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
|
714
|
+
dependencies = [
|
715
|
+
"cfg-if 1.0.0",
|
716
|
+
]
|
717
|
+
|
718
|
+
[[package]]
|
719
|
+
name = "integer-sqrt"
|
720
|
+
version = "0.1.5"
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
722
|
+
checksum = "276ec31bcb4a9ee45f58bec6f9ec700ae4cf4f4f8f2fa7e06cb406bd5ffdd770"
|
723
|
+
dependencies = [
|
724
|
+
"num-traits",
|
725
|
+
]
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "itoa"
|
729
|
+
version = "0.4.7"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "keccak"
|
735
|
+
version = "0.1.0"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "lazy_static"
|
741
|
+
version = "1.4.0"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
744
|
+
|
745
|
+
[[package]]
|
746
|
+
name = "libc"
|
747
|
+
version = "0.2.82"
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
+
checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929"
|
750
|
+
|
751
|
+
[[package]]
|
752
|
+
name = "libsecp256k1"
|
753
|
+
version = "0.3.5"
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
755
|
+
checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"
|
756
|
+
dependencies = [
|
757
|
+
"arrayref",
|
758
|
+
"crunchy",
|
759
|
+
"digest 0.8.1",
|
760
|
+
"hmac-drbg",
|
761
|
+
"rand 0.7.3",
|
762
|
+
"sha2 0.8.2",
|
763
|
+
"subtle 2.4.0",
|
764
|
+
"typenum",
|
765
|
+
]
|
766
|
+
|
767
|
+
[[package]]
|
768
|
+
name = "lock_api"
|
769
|
+
version = "0.4.2"
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
771
|
+
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
|
772
|
+
dependencies = [
|
773
|
+
"scopeguard",
|
774
|
+
]
|
775
|
+
|
776
|
+
[[package]]
|
777
|
+
name = "log"
|
778
|
+
version = "0.4.13"
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
+
checksum = "fcf3805d4480bb5b86070dcfeb9e2cb2ebc148adb753c5cca5f884d1d65a42b2"
|
781
|
+
dependencies = [
|
782
|
+
"cfg-if 0.1.10",
|
783
|
+
]
|
784
|
+
|
785
|
+
[[package]]
|
786
|
+
name = "matchers"
|
787
|
+
version = "0.0.1"
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
789
|
+
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
|
790
|
+
dependencies = [
|
791
|
+
"regex-automata",
|
792
|
+
]
|
793
|
+
|
794
|
+
[[package]]
|
795
|
+
name = "memchr"
|
796
|
+
version = "2.3.4"
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
|
799
|
+
|
800
|
+
[[package]]
|
801
|
+
name = "memory-db"
|
802
|
+
version = "0.25.0"
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
804
|
+
checksum = "6cbd2a22f201c03cc1706a727842490abfea17b7b53260358239828208daba3c"
|
805
|
+
dependencies = [
|
806
|
+
"hash-db",
|
807
|
+
"hashbrown",
|
808
|
+
"parity-util-mem",
|
809
|
+
]
|
810
|
+
|
811
|
+
[[package]]
|
812
|
+
name = "memory_units"
|
813
|
+
version = "0.3.0"
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
815
|
+
checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"
|
816
|
+
|
817
|
+
[[package]]
|
818
|
+
name = "merlin"
|
819
|
+
version = "2.0.1"
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
+
checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42"
|
822
|
+
dependencies = [
|
823
|
+
"byteorder",
|
824
|
+
"keccak",
|
825
|
+
"rand_core 0.5.1",
|
826
|
+
"zeroize",
|
827
|
+
]
|
828
|
+
|
829
|
+
[[package]]
|
830
|
+
name = "miniz_oxide"
|
831
|
+
version = "0.4.3"
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
833
|
+
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
|
834
|
+
dependencies = [
|
835
|
+
"adler",
|
836
|
+
"autocfg",
|
837
|
+
]
|
838
|
+
|
839
|
+
[[package]]
|
840
|
+
name = "nodrop"
|
841
|
+
version = "0.1.14"
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
+
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
844
|
+
|
845
|
+
[[package]]
|
846
|
+
name = "num-bigint"
|
847
|
+
version = "0.2.6"
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
849
|
+
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
|
850
|
+
dependencies = [
|
851
|
+
"autocfg",
|
852
|
+
"num-integer",
|
853
|
+
"num-traits",
|
854
|
+
]
|
855
|
+
|
856
|
+
[[package]]
|
857
|
+
name = "num-integer"
|
858
|
+
version = "0.1.44"
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
+
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
|
861
|
+
dependencies = [
|
862
|
+
"autocfg",
|
863
|
+
"num-traits",
|
864
|
+
]
|
865
|
+
|
866
|
+
[[package]]
|
867
|
+
name = "num-rational"
|
868
|
+
version = "0.2.4"
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
+
checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
|
871
|
+
dependencies = [
|
872
|
+
"autocfg",
|
873
|
+
"num-bigint",
|
874
|
+
"num-integer",
|
875
|
+
"num-traits",
|
876
|
+
]
|
877
|
+
|
878
|
+
[[package]]
|
879
|
+
name = "num-traits"
|
880
|
+
version = "0.2.14"
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
+
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
883
|
+
dependencies = [
|
884
|
+
"autocfg",
|
885
|
+
]
|
886
|
+
|
887
|
+
[[package]]
|
888
|
+
name = "num_cpus"
|
889
|
+
version = "1.13.0"
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
+
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
892
|
+
dependencies = [
|
893
|
+
"hermit-abi",
|
894
|
+
"libc",
|
895
|
+
]
|
896
|
+
|
897
|
+
[[package]]
|
898
|
+
name = "object"
|
899
|
+
version = "0.23.0"
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
901
|
+
checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4"
|
902
|
+
|
903
|
+
[[package]]
|
904
|
+
name = "once_cell"
|
905
|
+
version = "1.5.2"
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
907
|
+
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
|
908
|
+
dependencies = [
|
909
|
+
"parking_lot",
|
910
|
+
]
|
911
|
+
|
912
|
+
[[package]]
|
913
|
+
name = "opaque-debug"
|
914
|
+
version = "0.2.3"
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
+
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
|
917
|
+
|
918
|
+
[[package]]
|
919
|
+
name = "opaque-debug"
|
920
|
+
version = "0.3.0"
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
922
|
+
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
923
|
+
|
924
|
+
[[package]]
|
925
|
+
name = "parity-scale-codec"
|
926
|
+
version = "1.3.6"
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
+
checksum = "79602888a81ace83e3d1d4b2873286c1f5f906c84db667594e8db8da3506c383"
|
929
|
+
dependencies = [
|
930
|
+
"arrayvec 0.5.1",
|
931
|
+
"bitvec",
|
932
|
+
"byte-slice-cast",
|
933
|
+
"parity-scale-codec-derive",
|
934
|
+
"serde",
|
935
|
+
]
|
936
|
+
|
937
|
+
[[package]]
|
938
|
+
name = "parity-scale-codec-derive"
|
939
|
+
version = "1.2.2"
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
+
checksum = "198db82bb1c18fc00176004462dd809b2a6d851669550aa17af6dacd21ae0c14"
|
942
|
+
dependencies = [
|
943
|
+
"proc-macro-crate",
|
944
|
+
"proc-macro2",
|
945
|
+
"quote",
|
946
|
+
"syn",
|
947
|
+
]
|
948
|
+
|
949
|
+
[[package]]
|
950
|
+
name = "parity-util-mem"
|
951
|
+
version = "0.8.0"
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
953
|
+
checksum = "8f17f15cb05897127bf36a240085a1f0bbef7bce3024849eccf7f93f6171bc27"
|
954
|
+
dependencies = [
|
955
|
+
"cfg-if 1.0.0",
|
956
|
+
"hashbrown",
|
957
|
+
"impl-trait-for-tuples",
|
958
|
+
"parity-util-mem-derive",
|
959
|
+
"parking_lot",
|
960
|
+
"primitive-types",
|
961
|
+
"winapi",
|
962
|
+
]
|
963
|
+
|
964
|
+
[[package]]
|
965
|
+
name = "parity-util-mem-derive"
|
966
|
+
version = "0.1.0"
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
968
|
+
checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"
|
969
|
+
dependencies = [
|
970
|
+
"proc-macro2",
|
971
|
+
"syn",
|
972
|
+
"synstructure",
|
973
|
+
]
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "parity-wasm"
|
977
|
+
version = "0.41.0"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865"
|
980
|
+
|
981
|
+
[[package]]
|
982
|
+
name = "parking_lot"
|
983
|
+
version = "0.11.1"
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
+
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
|
986
|
+
dependencies = [
|
987
|
+
"instant",
|
988
|
+
"lock_api",
|
989
|
+
"parking_lot_core",
|
990
|
+
]
|
991
|
+
|
992
|
+
[[package]]
|
993
|
+
name = "parking_lot_core"
|
994
|
+
version = "0.8.2"
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
+
checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272"
|
997
|
+
dependencies = [
|
998
|
+
"cfg-if 1.0.0",
|
999
|
+
"instant",
|
1000
|
+
"libc",
|
1001
|
+
"redox_syscall",
|
1002
|
+
"smallvec",
|
1003
|
+
"winapi",
|
1004
|
+
]
|
1005
|
+
|
1006
|
+
[[package]]
|
1007
|
+
name = "paste"
|
1008
|
+
version = "0.1.18"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
|
1011
|
+
dependencies = [
|
1012
|
+
"paste-impl",
|
1013
|
+
"proc-macro-hack",
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "paste-impl"
|
1018
|
+
version = "0.1.18"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
|
1021
|
+
dependencies = [
|
1022
|
+
"proc-macro-hack",
|
1023
|
+
]
|
1024
|
+
|
1025
|
+
[[package]]
|
1026
|
+
name = "pbkdf2"
|
1027
|
+
version = "0.3.0"
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
+
checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
|
1030
|
+
dependencies = [
|
1031
|
+
"byteorder",
|
1032
|
+
"crypto-mac 0.7.0",
|
1033
|
+
]
|
1034
|
+
|
1035
|
+
[[package]]
|
1036
|
+
name = "pbkdf2"
|
1037
|
+
version = "0.4.0"
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
+
checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"
|
1040
|
+
dependencies = [
|
1041
|
+
"crypto-mac 0.8.0",
|
1042
|
+
]
|
1043
|
+
|
1044
|
+
[[package]]
|
1045
|
+
name = "pin-project-lite"
|
1046
|
+
version = "0.2.4"
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1048
|
+
checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
|
1049
|
+
|
1050
|
+
[[package]]
|
1051
|
+
name = "pin-utils"
|
1052
|
+
version = "0.1.0"
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1055
|
+
|
1056
|
+
[[package]]
|
1057
|
+
name = "ppv-lite86"
|
1058
|
+
version = "0.2.10"
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1060
|
+
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
|
1061
|
+
|
1062
|
+
[[package]]
|
1063
|
+
name = "primitive-types"
|
1064
|
+
version = "0.8.0"
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
+
checksum = "b3824ae2c5e27160113b9e029a10ec9e3f0237bad8029f69c7724393c9fdefd8"
|
1067
|
+
dependencies = [
|
1068
|
+
"fixed-hash",
|
1069
|
+
"impl-codec",
|
1070
|
+
"impl-serde",
|
1071
|
+
"uint",
|
1072
|
+
]
|
1073
|
+
|
1074
|
+
[[package]]
|
1075
|
+
name = "proc-macro-crate"
|
1076
|
+
version = "0.1.5"
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1078
|
+
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
|
1079
|
+
dependencies = [
|
1080
|
+
"toml",
|
1081
|
+
]
|
1082
|
+
|
1083
|
+
[[package]]
|
1084
|
+
name = "proc-macro-hack"
|
1085
|
+
version = "0.5.19"
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1087
|
+
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
|
1088
|
+
|
1089
|
+
[[package]]
|
1090
|
+
name = "proc-macro-nested"
|
1091
|
+
version = "0.1.7"
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1093
|
+
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
|
1094
|
+
|
1095
|
+
[[package]]
|
1096
|
+
name = "proc-macro2"
|
1097
|
+
version = "1.0.24"
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
|
+
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
|
1100
|
+
dependencies = [
|
1101
|
+
"unicode-xid",
|
1102
|
+
]
|
1103
|
+
|
1104
|
+
[[package]]
|
1105
|
+
name = "quote"
|
1106
|
+
version = "1.0.8"
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
+
checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df"
|
1109
|
+
dependencies = [
|
1110
|
+
"proc-macro2",
|
1111
|
+
]
|
1112
|
+
|
1113
|
+
[[package]]
|
1114
|
+
name = "radium"
|
1115
|
+
version = "0.3.0"
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1117
|
+
checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"
|
1118
|
+
|
1119
|
+
[[package]]
|
1120
|
+
name = "rand"
|
1121
|
+
version = "0.7.3"
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
|
+
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
1124
|
+
dependencies = [
|
1125
|
+
"getrandom 0.1.16",
|
1126
|
+
"libc",
|
1127
|
+
"rand_chacha 0.2.2",
|
1128
|
+
"rand_core 0.5.1",
|
1129
|
+
"rand_hc",
|
1130
|
+
"rand_pcg",
|
1131
|
+
]
|
1132
|
+
|
1133
|
+
[[package]]
|
1134
|
+
name = "rand"
|
1135
|
+
version = "0.8.2"
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
+
checksum = "18519b42a40024d661e1714153e9ad0c3de27cd495760ceb09710920f1098b1e"
|
1138
|
+
dependencies = [
|
1139
|
+
"libc",
|
1140
|
+
"rand_chacha 0.3.0",
|
1141
|
+
"rand_core 0.6.1",
|
1142
|
+
]
|
1143
|
+
|
1144
|
+
[[package]]
|
1145
|
+
name = "rand_chacha"
|
1146
|
+
version = "0.2.2"
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1148
|
+
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
1149
|
+
dependencies = [
|
1150
|
+
"ppv-lite86",
|
1151
|
+
"rand_core 0.5.1",
|
1152
|
+
]
|
1153
|
+
|
1154
|
+
[[package]]
|
1155
|
+
name = "rand_chacha"
|
1156
|
+
version = "0.3.0"
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
+
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
|
1159
|
+
dependencies = [
|
1160
|
+
"ppv-lite86",
|
1161
|
+
"rand_core 0.6.1",
|
1162
|
+
]
|
1163
|
+
|
1164
|
+
[[package]]
|
1165
|
+
name = "rand_core"
|
1166
|
+
version = "0.5.1"
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
1169
|
+
dependencies = [
|
1170
|
+
"getrandom 0.1.16",
|
1171
|
+
]
|
1172
|
+
|
1173
|
+
[[package]]
|
1174
|
+
name = "rand_core"
|
1175
|
+
version = "0.6.1"
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1177
|
+
checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5"
|
1178
|
+
dependencies = [
|
1179
|
+
"getrandom 0.2.2",
|
1180
|
+
]
|
1181
|
+
|
1182
|
+
[[package]]
|
1183
|
+
name = "rand_hc"
|
1184
|
+
version = "0.2.0"
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1186
|
+
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
1187
|
+
dependencies = [
|
1188
|
+
"rand_core 0.5.1",
|
1189
|
+
]
|
1190
|
+
|
1191
|
+
[[package]]
|
1192
|
+
name = "rand_pcg"
|
1193
|
+
version = "0.2.1"
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1195
|
+
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
|
1196
|
+
dependencies = [
|
1197
|
+
"rand_core 0.5.1",
|
1198
|
+
]
|
1199
|
+
|
1200
|
+
[[package]]
|
1201
|
+
name = "redox_syscall"
|
1202
|
+
version = "0.1.57"
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1204
|
+
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
|
1205
|
+
|
1206
|
+
[[package]]
|
1207
|
+
name = "ref-cast"
|
1208
|
+
version = "1.0.6"
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1210
|
+
checksum = "300f2a835d808734ee295d45007adacb9ebb29dd3ae2424acfa17930cae541da"
|
1211
|
+
dependencies = [
|
1212
|
+
"ref-cast-impl",
|
1213
|
+
]
|
1214
|
+
|
1215
|
+
[[package]]
|
1216
|
+
name = "ref-cast-impl"
|
1217
|
+
version = "1.0.6"
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
+
checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2"
|
1220
|
+
dependencies = [
|
1221
|
+
"proc-macro2",
|
1222
|
+
"quote",
|
1223
|
+
"syn",
|
1224
|
+
]
|
1225
|
+
|
1226
|
+
[[package]]
|
1227
|
+
name = "regex"
|
1228
|
+
version = "1.4.3"
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1230
|
+
checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
|
1231
|
+
dependencies = [
|
1232
|
+
"aho-corasick",
|
1233
|
+
"memchr",
|
1234
|
+
"regex-syntax",
|
1235
|
+
"thread_local",
|
1236
|
+
]
|
1237
|
+
|
1238
|
+
[[package]]
|
1239
|
+
name = "regex-automata"
|
1240
|
+
version = "0.1.9"
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
+
checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
|
1243
|
+
dependencies = [
|
1244
|
+
"byteorder",
|
1245
|
+
"regex-syntax",
|
1246
|
+
]
|
1247
|
+
|
1248
|
+
[[package]]
|
1249
|
+
name = "regex-syntax"
|
1250
|
+
version = "0.6.22"
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1252
|
+
checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
|
1253
|
+
|
1254
|
+
[[package]]
|
1255
|
+
name = "rustc-demangle"
|
1256
|
+
version = "0.1.18"
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1258
|
+
checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
|
1259
|
+
|
1260
|
+
[[package]]
|
1261
|
+
name = "rustc-hash"
|
1262
|
+
version = "1.1.0"
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1264
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1265
|
+
|
1266
|
+
[[package]]
|
1267
|
+
name = "rustc-hex"
|
1268
|
+
version = "2.1.0"
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1270
|
+
checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
|
1271
|
+
|
1272
|
+
[[package]]
|
1273
|
+
name = "ryu"
|
1274
|
+
version = "1.0.5"
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1276
|
+
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
1277
|
+
|
1278
|
+
[[package]]
|
1279
|
+
name = "schnorrkel"
|
1280
|
+
version = "0.9.1"
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1282
|
+
checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"
|
1283
|
+
dependencies = [
|
1284
|
+
"arrayref",
|
1285
|
+
"arrayvec 0.5.1",
|
1286
|
+
"curve25519-dalek 2.1.2",
|
1287
|
+
"getrandom 0.1.16",
|
1288
|
+
"merlin",
|
1289
|
+
"rand 0.7.3",
|
1290
|
+
"rand_core 0.5.1",
|
1291
|
+
"serde",
|
1292
|
+
"sha2 0.8.2",
|
1293
|
+
"subtle 2.4.0",
|
1294
|
+
"zeroize",
|
1295
|
+
]
|
1296
|
+
|
1297
|
+
[[package]]
|
1298
|
+
name = "scopeguard"
|
1299
|
+
version = "1.1.0"
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1302
|
+
|
1303
|
+
[[package]]
|
1304
|
+
name = "secrecy"
|
1305
|
+
version = "0.7.0"
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1307
|
+
checksum = "0673d6a6449f5e7d12a1caf424fd9363e2af3a4953023ed455e3c4beef4597c0"
|
1308
|
+
dependencies = [
|
1309
|
+
"zeroize",
|
1310
|
+
]
|
1311
|
+
|
1312
|
+
[[package]]
|
1313
|
+
name = "serde"
|
1314
|
+
version = "1.0.104"
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
+
checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
|
1317
|
+
dependencies = [
|
1318
|
+
"serde_derive",
|
1319
|
+
]
|
1320
|
+
|
1321
|
+
[[package]]
|
1322
|
+
name = "serde_derive"
|
1323
|
+
version = "1.0.104"
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
+
checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
|
1326
|
+
dependencies = [
|
1327
|
+
"proc-macro2",
|
1328
|
+
"quote",
|
1329
|
+
"syn",
|
1330
|
+
]
|
1331
|
+
|
1332
|
+
[[package]]
|
1333
|
+
name = "serde_json"
|
1334
|
+
version = "1.0.61"
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1336
|
+
checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a"
|
1337
|
+
dependencies = [
|
1338
|
+
"itoa",
|
1339
|
+
"ryu",
|
1340
|
+
"serde",
|
1341
|
+
]
|
1342
|
+
|
1343
|
+
[[package]]
|
1344
|
+
name = "sha2"
|
1345
|
+
version = "0.8.2"
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1347
|
+
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
|
1348
|
+
dependencies = [
|
1349
|
+
"block-buffer 0.7.3",
|
1350
|
+
"digest 0.8.1",
|
1351
|
+
"fake-simd",
|
1352
|
+
"opaque-debug 0.2.3",
|
1353
|
+
]
|
1354
|
+
|
1355
|
+
[[package]]
|
1356
|
+
name = "sha2"
|
1357
|
+
version = "0.9.2"
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1359
|
+
checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
|
1360
|
+
dependencies = [
|
1361
|
+
"block-buffer 0.9.0",
|
1362
|
+
"cfg-if 1.0.0",
|
1363
|
+
"cpuid-bool",
|
1364
|
+
"digest 0.9.0",
|
1365
|
+
"opaque-debug 0.3.0",
|
1366
|
+
]
|
1367
|
+
|
1368
|
+
[[package]]
|
1369
|
+
name = "sharded-slab"
|
1370
|
+
version = "0.1.1"
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1372
|
+
checksum = "79c719719ee05df97490f80a45acfc99e5a30ce98a1e4fb67aee422745ae14e3"
|
1373
|
+
dependencies = [
|
1374
|
+
"lazy_static",
|
1375
|
+
]
|
1376
|
+
|
1377
|
+
[[package]]
|
1378
|
+
name = "signature"
|
1379
|
+
version = "1.3.0"
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1381
|
+
checksum = "0f0242b8e50dd9accdd56170e94ca1ebd223b098eb9c83539a6e367d0f36ae68"
|
1382
|
+
|
1383
|
+
[[package]]
|
1384
|
+
name = "slab"
|
1385
|
+
version = "0.4.2"
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1387
|
+
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
|
1388
|
+
|
1389
|
+
[[package]]
|
1390
|
+
name = "smallvec"
|
1391
|
+
version = "1.6.1"
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1393
|
+
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
|
1394
|
+
|
1395
|
+
[[package]]
|
1396
|
+
name = "sp-application-crypto"
|
1397
|
+
version = "2.0.1"
|
1398
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1399
|
+
dependencies = [
|
1400
|
+
"parity-scale-codec",
|
1401
|
+
"serde",
|
1402
|
+
"sp-core",
|
1403
|
+
"sp-io",
|
1404
|
+
"sp-std",
|
1405
|
+
]
|
1406
|
+
|
1407
|
+
[[package]]
|
1408
|
+
name = "sp-arithmetic"
|
1409
|
+
version = "2.0.1"
|
1410
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1411
|
+
dependencies = [
|
1412
|
+
"integer-sqrt",
|
1413
|
+
"num-traits",
|
1414
|
+
"parity-scale-codec",
|
1415
|
+
"serde",
|
1416
|
+
"sp-debug-derive",
|
1417
|
+
"sp-std",
|
1418
|
+
]
|
1419
|
+
|
1420
|
+
[[package]]
|
1421
|
+
name = "sp-core"
|
1422
|
+
version = "2.0.1"
|
1423
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1424
|
+
dependencies = [
|
1425
|
+
"base58",
|
1426
|
+
"blake2-rfc",
|
1427
|
+
"byteorder",
|
1428
|
+
"dyn-clonable",
|
1429
|
+
"ed25519-dalek",
|
1430
|
+
"futures",
|
1431
|
+
"hash-db",
|
1432
|
+
"hash256-std-hasher",
|
1433
|
+
"hex",
|
1434
|
+
"impl-serde",
|
1435
|
+
"lazy_static",
|
1436
|
+
"libsecp256k1",
|
1437
|
+
"log",
|
1438
|
+
"merlin",
|
1439
|
+
"num-traits",
|
1440
|
+
"parity-scale-codec",
|
1441
|
+
"parity-util-mem",
|
1442
|
+
"parking_lot",
|
1443
|
+
"primitive-types",
|
1444
|
+
"rand 0.7.3",
|
1445
|
+
"regex",
|
1446
|
+
"schnorrkel",
|
1447
|
+
"secrecy",
|
1448
|
+
"serde",
|
1449
|
+
"sha2 0.9.2",
|
1450
|
+
"sp-debug-derive",
|
1451
|
+
"sp-externalities",
|
1452
|
+
"sp-runtime-interface",
|
1453
|
+
"sp-std",
|
1454
|
+
"sp-storage",
|
1455
|
+
"substrate-bip39",
|
1456
|
+
"thiserror",
|
1457
|
+
"tiny-bip39",
|
1458
|
+
"tiny-keccak",
|
1459
|
+
"twox-hash",
|
1460
|
+
"wasmi",
|
1461
|
+
"zeroize",
|
1462
|
+
]
|
1463
|
+
|
1464
|
+
[[package]]
|
1465
|
+
name = "sp-debug-derive"
|
1466
|
+
version = "2.0.1"
|
1467
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1468
|
+
dependencies = [
|
1469
|
+
"proc-macro2",
|
1470
|
+
"quote",
|
1471
|
+
"syn",
|
1472
|
+
]
|
1473
|
+
|
1474
|
+
[[package]]
|
1475
|
+
name = "sp-externalities"
|
1476
|
+
version = "0.8.1"
|
1477
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1478
|
+
dependencies = [
|
1479
|
+
"environmental",
|
1480
|
+
"parity-scale-codec",
|
1481
|
+
"sp-std",
|
1482
|
+
"sp-storage",
|
1483
|
+
]
|
1484
|
+
|
1485
|
+
[[package]]
|
1486
|
+
name = "sp-inherents"
|
1487
|
+
version = "2.0.1"
|
1488
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1489
|
+
dependencies = [
|
1490
|
+
"parity-scale-codec",
|
1491
|
+
"parking_lot",
|
1492
|
+
"sp-core",
|
1493
|
+
"sp-std",
|
1494
|
+
"thiserror",
|
1495
|
+
]
|
1496
|
+
|
1497
|
+
[[package]]
|
1498
|
+
name = "sp-io"
|
1499
|
+
version = "2.0.1"
|
1500
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1501
|
+
dependencies = [
|
1502
|
+
"futures",
|
1503
|
+
"hash-db",
|
1504
|
+
"libsecp256k1",
|
1505
|
+
"log",
|
1506
|
+
"parity-scale-codec",
|
1507
|
+
"parking_lot",
|
1508
|
+
"sp-core",
|
1509
|
+
"sp-externalities",
|
1510
|
+
"sp-keystore",
|
1511
|
+
"sp-runtime-interface",
|
1512
|
+
"sp-state-machine",
|
1513
|
+
"sp-std",
|
1514
|
+
"sp-tracing",
|
1515
|
+
"sp-trie",
|
1516
|
+
"sp-wasm-interface",
|
1517
|
+
"tracing",
|
1518
|
+
"tracing-core",
|
1519
|
+
]
|
1520
|
+
|
1521
|
+
[[package]]
|
1522
|
+
name = "sp-keystore"
|
1523
|
+
version = "0.8.0"
|
1524
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1525
|
+
dependencies = [
|
1526
|
+
"async-trait",
|
1527
|
+
"derive_more",
|
1528
|
+
"futures",
|
1529
|
+
"merlin",
|
1530
|
+
"parity-scale-codec",
|
1531
|
+
"parking_lot",
|
1532
|
+
"schnorrkel",
|
1533
|
+
"sp-core",
|
1534
|
+
"sp-externalities",
|
1535
|
+
]
|
1536
|
+
|
1537
|
+
[[package]]
|
1538
|
+
name = "sp-panic-handler"
|
1539
|
+
version = "2.0.1"
|
1540
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1541
|
+
dependencies = [
|
1542
|
+
"backtrace",
|
1543
|
+
]
|
1544
|
+
|
1545
|
+
[[package]]
|
1546
|
+
name = "sp-runtime"
|
1547
|
+
version = "2.0.1"
|
1548
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1549
|
+
dependencies = [
|
1550
|
+
"either",
|
1551
|
+
"hash256-std-hasher",
|
1552
|
+
"impl-trait-for-tuples",
|
1553
|
+
"log",
|
1554
|
+
"parity-scale-codec",
|
1555
|
+
"parity-util-mem",
|
1556
|
+
"paste",
|
1557
|
+
"rand 0.7.3",
|
1558
|
+
"serde",
|
1559
|
+
"sp-application-crypto",
|
1560
|
+
"sp-arithmetic",
|
1561
|
+
"sp-core",
|
1562
|
+
"sp-io",
|
1563
|
+
"sp-std",
|
1564
|
+
]
|
1565
|
+
|
1566
|
+
[[package]]
|
1567
|
+
name = "sp-runtime-interface"
|
1568
|
+
version = "2.0.1"
|
1569
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1570
|
+
dependencies = [
|
1571
|
+
"impl-trait-for-tuples",
|
1572
|
+
"parity-scale-codec",
|
1573
|
+
"primitive-types",
|
1574
|
+
"sp-externalities",
|
1575
|
+
"sp-runtime-interface-proc-macro",
|
1576
|
+
"sp-std",
|
1577
|
+
"sp-storage",
|
1578
|
+
"sp-tracing",
|
1579
|
+
"sp-wasm-interface",
|
1580
|
+
"static_assertions",
|
1581
|
+
]
|
1582
|
+
|
1583
|
+
[[package]]
|
1584
|
+
name = "sp-runtime-interface-proc-macro"
|
1585
|
+
version = "2.0.1"
|
1586
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1587
|
+
dependencies = [
|
1588
|
+
"Inflector",
|
1589
|
+
"proc-macro-crate",
|
1590
|
+
"proc-macro2",
|
1591
|
+
"quote",
|
1592
|
+
"syn",
|
1593
|
+
]
|
1594
|
+
|
1595
|
+
[[package]]
|
1596
|
+
name = "sp-state-machine"
|
1597
|
+
version = "0.8.1"
|
1598
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1599
|
+
dependencies = [
|
1600
|
+
"hash-db",
|
1601
|
+
"log",
|
1602
|
+
"num-traits",
|
1603
|
+
"parity-scale-codec",
|
1604
|
+
"parking_lot",
|
1605
|
+
"rand 0.7.3",
|
1606
|
+
"smallvec",
|
1607
|
+
"sp-core",
|
1608
|
+
"sp-externalities",
|
1609
|
+
"sp-panic-handler",
|
1610
|
+
"sp-std",
|
1611
|
+
"sp-trie",
|
1612
|
+
"thiserror",
|
1613
|
+
"trie-db",
|
1614
|
+
"trie-root",
|
1615
|
+
]
|
1616
|
+
|
1617
|
+
[[package]]
|
1618
|
+
name = "sp-std"
|
1619
|
+
version = "2.0.1"
|
1620
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1621
|
+
|
1622
|
+
[[package]]
|
1623
|
+
name = "sp-storage"
|
1624
|
+
version = "2.0.1"
|
1625
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1626
|
+
dependencies = [
|
1627
|
+
"impl-serde",
|
1628
|
+
"parity-scale-codec",
|
1629
|
+
"ref-cast",
|
1630
|
+
"serde",
|
1631
|
+
"sp-debug-derive",
|
1632
|
+
"sp-std",
|
1633
|
+
]
|
1634
|
+
|
1635
|
+
[[package]]
|
1636
|
+
name = "sp-tracing"
|
1637
|
+
version = "2.0.1"
|
1638
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1639
|
+
dependencies = [
|
1640
|
+
"log",
|
1641
|
+
"parity-scale-codec",
|
1642
|
+
"sp-std",
|
1643
|
+
"tracing",
|
1644
|
+
"tracing-core",
|
1645
|
+
"tracing-subscriber",
|
1646
|
+
]
|
1647
|
+
|
1648
|
+
[[package]]
|
1649
|
+
name = "sp-trie"
|
1650
|
+
version = "2.0.1"
|
1651
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1652
|
+
dependencies = [
|
1653
|
+
"hash-db",
|
1654
|
+
"memory-db",
|
1655
|
+
"parity-scale-codec",
|
1656
|
+
"sp-core",
|
1657
|
+
"sp-std",
|
1658
|
+
"trie-db",
|
1659
|
+
"trie-root",
|
1660
|
+
]
|
1661
|
+
|
1662
|
+
[[package]]
|
1663
|
+
name = "sp-wasm-interface"
|
1664
|
+
version = "2.0.1"
|
1665
|
+
source = "git+https://github.com/paritytech/substrate.git#947a6bc1cc8919d382c193893308ba46e6d6cba7"
|
1666
|
+
dependencies = [
|
1667
|
+
"impl-trait-for-tuples",
|
1668
|
+
"parity-scale-codec",
|
1669
|
+
"sp-std",
|
1670
|
+
"wasmi",
|
1671
|
+
]
|
1672
|
+
|
1673
|
+
[[package]]
|
1674
|
+
name = "static_assertions"
|
1675
|
+
version = "1.1.0"
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1677
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
1678
|
+
|
1679
|
+
[[package]]
|
1680
|
+
name = "substrate-bip39"
|
1681
|
+
version = "0.4.2"
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1683
|
+
checksum = "bed6646a0159b9935b5d045611560eeef842b78d7adc3ba36f5ca325a13a0236"
|
1684
|
+
dependencies = [
|
1685
|
+
"hmac 0.7.1",
|
1686
|
+
"pbkdf2 0.3.0",
|
1687
|
+
"schnorrkel",
|
1688
|
+
"sha2 0.8.2",
|
1689
|
+
"zeroize",
|
1690
|
+
]
|
1691
|
+
|
1692
|
+
[[package]]
|
1693
|
+
name = "subtle"
|
1694
|
+
version = "1.0.0"
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1696
|
+
checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
|
1697
|
+
|
1698
|
+
[[package]]
|
1699
|
+
name = "subtle"
|
1700
|
+
version = "2.4.0"
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1702
|
+
checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
|
1703
|
+
|
1704
|
+
[[package]]
|
1705
|
+
name = "syn"
|
1706
|
+
version = "1.0.59"
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1708
|
+
checksum = "07cb8b1b4ebf86a89ee88cbd201b022b94138c623644d035185c84d3f41b7e66"
|
1709
|
+
dependencies = [
|
1710
|
+
"proc-macro2",
|
1711
|
+
"quote",
|
1712
|
+
"unicode-xid",
|
1713
|
+
]
|
1714
|
+
|
1715
|
+
[[package]]
|
1716
|
+
name = "synstructure"
|
1717
|
+
version = "0.12.4"
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1719
|
+
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
|
1720
|
+
dependencies = [
|
1721
|
+
"proc-macro2",
|
1722
|
+
"quote",
|
1723
|
+
"syn",
|
1724
|
+
"unicode-xid",
|
1725
|
+
]
|
1726
|
+
|
1727
|
+
[[package]]
|
1728
|
+
name = "thiserror"
|
1729
|
+
version = "1.0.23"
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1731
|
+
checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146"
|
1732
|
+
dependencies = [
|
1733
|
+
"thiserror-impl",
|
1734
|
+
]
|
1735
|
+
|
1736
|
+
[[package]]
|
1737
|
+
name = "thiserror-impl"
|
1738
|
+
version = "1.0.23"
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1740
|
+
checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1"
|
1741
|
+
dependencies = [
|
1742
|
+
"proc-macro2",
|
1743
|
+
"quote",
|
1744
|
+
"syn",
|
1745
|
+
]
|
1746
|
+
|
1747
|
+
[[package]]
|
1748
|
+
name = "thread_local"
|
1749
|
+
version = "1.1.1"
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1751
|
+
checksum = "301bdd13d23c49672926be451130892d274d3ba0b410c18e00daa7990ff38d99"
|
1752
|
+
dependencies = [
|
1753
|
+
"once_cell",
|
1754
|
+
]
|
1755
|
+
|
1756
|
+
[[package]]
|
1757
|
+
name = "time"
|
1758
|
+
version = "0.1.43"
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
+
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
|
1761
|
+
dependencies = [
|
1762
|
+
"libc",
|
1763
|
+
"winapi",
|
1764
|
+
]
|
1765
|
+
|
1766
|
+
[[package]]
|
1767
|
+
name = "tiny-bip39"
|
1768
|
+
version = "0.8.0"
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1770
|
+
checksum = "d9e44c4759bae7f1032e286a7ef990bd9ed23fe831b7eeba0beb97484c2e59b8"
|
1771
|
+
dependencies = [
|
1772
|
+
"anyhow",
|
1773
|
+
"hmac 0.8.1",
|
1774
|
+
"once_cell",
|
1775
|
+
"pbkdf2 0.4.0",
|
1776
|
+
"rand 0.7.3",
|
1777
|
+
"rustc-hash",
|
1778
|
+
"sha2 0.9.2",
|
1779
|
+
"thiserror",
|
1780
|
+
"unicode-normalization",
|
1781
|
+
"zeroize",
|
1782
|
+
]
|
1783
|
+
|
1784
|
+
[[package]]
|
1785
|
+
name = "tiny-keccak"
|
1786
|
+
version = "2.0.2"
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1788
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
1789
|
+
dependencies = [
|
1790
|
+
"crunchy",
|
1791
|
+
]
|
1792
|
+
|
1793
|
+
[[package]]
|
1794
|
+
name = "tinyvec"
|
1795
|
+
version = "1.1.0"
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
+
checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
|
1798
|
+
dependencies = [
|
1799
|
+
"tinyvec_macros",
|
1800
|
+
]
|
1801
|
+
|
1802
|
+
[[package]]
|
1803
|
+
name = "tinyvec_macros"
|
1804
|
+
version = "0.1.0"
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1806
|
+
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
1807
|
+
|
1808
|
+
[[package]]
|
1809
|
+
name = "toml"
|
1810
|
+
version = "0.5.8"
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1812
|
+
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
|
1813
|
+
dependencies = [
|
1814
|
+
"serde",
|
1815
|
+
]
|
1816
|
+
|
1817
|
+
[[package]]
|
1818
|
+
name = "tracing"
|
1819
|
+
version = "0.1.22"
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
+
checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
|
1822
|
+
dependencies = [
|
1823
|
+
"cfg-if 1.0.0",
|
1824
|
+
"pin-project-lite",
|
1825
|
+
"tracing-attributes",
|
1826
|
+
"tracing-core",
|
1827
|
+
]
|
1828
|
+
|
1829
|
+
[[package]]
|
1830
|
+
name = "tracing-attributes"
|
1831
|
+
version = "0.1.11"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
|
1834
|
+
dependencies = [
|
1835
|
+
"proc-macro2",
|
1836
|
+
"quote",
|
1837
|
+
"syn",
|
1838
|
+
]
|
1839
|
+
|
1840
|
+
[[package]]
|
1841
|
+
name = "tracing-core"
|
1842
|
+
version = "0.1.17"
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
+
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
|
1845
|
+
dependencies = [
|
1846
|
+
"lazy_static",
|
1847
|
+
]
|
1848
|
+
|
1849
|
+
[[package]]
|
1850
|
+
name = "tracing-log"
|
1851
|
+
version = "0.1.1"
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1853
|
+
checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
|
1854
|
+
dependencies = [
|
1855
|
+
"lazy_static",
|
1856
|
+
"log",
|
1857
|
+
"tracing-core",
|
1858
|
+
]
|
1859
|
+
|
1860
|
+
[[package]]
|
1861
|
+
name = "tracing-serde"
|
1862
|
+
version = "0.1.2"
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1864
|
+
checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"
|
1865
|
+
dependencies = [
|
1866
|
+
"serde",
|
1867
|
+
"tracing-core",
|
1868
|
+
]
|
1869
|
+
|
1870
|
+
[[package]]
|
1871
|
+
name = "tracing-subscriber"
|
1872
|
+
version = "0.2.15"
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
+
checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
|
1875
|
+
dependencies = [
|
1876
|
+
"ansi_term",
|
1877
|
+
"chrono",
|
1878
|
+
"lazy_static",
|
1879
|
+
"matchers",
|
1880
|
+
"regex",
|
1881
|
+
"serde",
|
1882
|
+
"serde_json",
|
1883
|
+
"sharded-slab",
|
1884
|
+
"smallvec",
|
1885
|
+
"thread_local",
|
1886
|
+
"tracing",
|
1887
|
+
"tracing-core",
|
1888
|
+
"tracing-log",
|
1889
|
+
"tracing-serde",
|
1890
|
+
]
|
1891
|
+
|
1892
|
+
[[package]]
|
1893
|
+
name = "trie-db"
|
1894
|
+
version = "0.22.2"
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1896
|
+
checksum = "5cc176c377eb24d652c9c69c832c832019011b6106182bf84276c66b66d5c9a6"
|
1897
|
+
dependencies = [
|
1898
|
+
"hash-db",
|
1899
|
+
"hashbrown",
|
1900
|
+
"log",
|
1901
|
+
"rustc-hex",
|
1902
|
+
"smallvec",
|
1903
|
+
]
|
1904
|
+
|
1905
|
+
[[package]]
|
1906
|
+
name = "trie-root"
|
1907
|
+
version = "0.16.0"
|
1908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1909
|
+
checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"
|
1910
|
+
dependencies = [
|
1911
|
+
"hash-db",
|
1912
|
+
]
|
1913
|
+
|
1914
|
+
[[package]]
|
1915
|
+
name = "twox-hash"
|
1916
|
+
version = "1.6.0"
|
1917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1918
|
+
checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
|
1919
|
+
dependencies = [
|
1920
|
+
"cfg-if 0.1.10",
|
1921
|
+
"rand 0.7.3",
|
1922
|
+
"static_assertions",
|
1923
|
+
]
|
1924
|
+
|
1925
|
+
[[package]]
|
1926
|
+
name = "typenum"
|
1927
|
+
version = "1.12.0"
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1929
|
+
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
|
1930
|
+
|
1931
|
+
[[package]]
|
1932
|
+
name = "uint"
|
1933
|
+
version = "0.9.0"
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1935
|
+
checksum = "e11fe9a9348741cf134085ad57c249508345fe16411b3d7fb4ff2da2f1d6382e"
|
1936
|
+
dependencies = [
|
1937
|
+
"byteorder",
|
1938
|
+
"crunchy",
|
1939
|
+
"hex",
|
1940
|
+
"static_assertions",
|
1941
|
+
]
|
1942
|
+
|
1943
|
+
[[package]]
|
1944
|
+
name = "unicode-normalization"
|
1945
|
+
version = "0.1.16"
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1947
|
+
checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
|
1948
|
+
dependencies = [
|
1949
|
+
"tinyvec",
|
1950
|
+
]
|
1951
|
+
|
1952
|
+
[[package]]
|
1953
|
+
name = "unicode-xid"
|
1954
|
+
version = "0.2.1"
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1956
|
+
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
1957
|
+
|
1958
|
+
[[package]]
|
1959
|
+
name = "version_check"
|
1960
|
+
version = "0.9.2"
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1962
|
+
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
|
1963
|
+
|
1964
|
+
[[package]]
|
1965
|
+
name = "wasi"
|
1966
|
+
version = "0.9.0+wasi-snapshot-preview1"
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1968
|
+
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
1969
|
+
|
1970
|
+
[[package]]
|
1971
|
+
name = "wasi"
|
1972
|
+
version = "0.10.1+wasi-snapshot-preview1"
|
1973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1974
|
+
checksum = "93c6c3420963c5c64bca373b25e77acb562081b9bb4dd5bb864187742186cea9"
|
1975
|
+
|
1976
|
+
[[package]]
|
1977
|
+
name = "wasmi"
|
1978
|
+
version = "0.6.2"
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
+
checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff"
|
1981
|
+
dependencies = [
|
1982
|
+
"libc",
|
1983
|
+
"memory_units",
|
1984
|
+
"num-rational",
|
1985
|
+
"num-traits",
|
1986
|
+
"parity-wasm",
|
1987
|
+
"wasmi-validation",
|
1988
|
+
]
|
1989
|
+
|
1990
|
+
[[package]]
|
1991
|
+
name = "wasmi-validation"
|
1992
|
+
version = "0.3.0"
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1994
|
+
checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93"
|
1995
|
+
dependencies = [
|
1996
|
+
"parity-wasm",
|
1997
|
+
]
|
1998
|
+
|
1999
|
+
[[package]]
|
2000
|
+
name = "winapi"
|
2001
|
+
version = "0.3.9"
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2003
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2004
|
+
dependencies = [
|
2005
|
+
"winapi-i686-pc-windows-gnu",
|
2006
|
+
"winapi-x86_64-pc-windows-gnu",
|
2007
|
+
]
|
2008
|
+
|
2009
|
+
[[package]]
|
2010
|
+
name = "winapi-i686-pc-windows-gnu"
|
2011
|
+
version = "0.4.0"
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2013
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2014
|
+
|
2015
|
+
[[package]]
|
2016
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2017
|
+
version = "0.4.0"
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2020
|
+
|
2021
|
+
[[package]]
|
2022
|
+
name = "zeroize"
|
2023
|
+
version = "1.2.0"
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
+
checksum = "81a974bcdd357f0dca4d41677db03436324d45a4c9ed2d0b873a5a360ce41c36"
|
2026
|
+
dependencies = [
|
2027
|
+
"zeroize_derive",
|
2028
|
+
]
|
2029
|
+
|
2030
|
+
[[package]]
|
2031
|
+
name = "zeroize_derive"
|
2032
|
+
version = "1.0.1"
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2034
|
+
checksum = "c3f369ddb18862aba61aa49bf31e74d29f0f162dec753063200e1dc084345d16"
|
2035
|
+
dependencies = [
|
2036
|
+
"proc-macro2",
|
2037
|
+
"quote",
|
2038
|
+
"syn",
|
2039
|
+
"synstructure",
|
2040
|
+
]
|