wasmer 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 66d948e289c9851f9f766b0cdfdc2c34d96e70ac3e028891f138553b114348fa
4
+ data.tar.gz: f4c4d9cd85f20177573da3a55666e97675add7ad11fc2c1aa793158a649c4dba
5
+ SHA512:
6
+ metadata.gz: 637758cb646962b5fcb34a4777e2527fd81783319748f51fe54e85b8b8efd0af7661c5594059949f05617c4beb04bd7b5ad33f14304790db875a0f16d33116db
7
+ data.tar.gz: dc07a70a0cfb2be89faf9a7949746891ddfbe77e3907d27d9c9588d510c0dd405c259997db650b2791e96fe82c418c28e88593f3ed0fe3996b4cd9cb4609dc87
data/.cargo/config ADDED
@@ -0,0 +1,6 @@
1
+ [target.x86_64-apple-darwin]
2
+ rustflags = [
3
+ "-C", "link-arg=-Wl",
4
+ "-C", "link-arg=-undefined",
5
+ "-C", "link-arg=dynamic_lookup",
6
+ ]
@@ -0,0 +1,70 @@
1
+ version: 2.1
2
+
3
+ # List of all jobs.
4
+ jobs:
5
+ # Build and test the project the project.
6
+ build_and_test:
7
+ docker:
8
+ - image: circleci/ruby:latest
9
+ steps:
10
+ # Update the project.
11
+ - checkout
12
+
13
+ # If the cache exists, loads it.
14
+ - restore_cache:
15
+ keys:
16
+ - v1-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
17
+ - v1-linux-{{ arch }}
18
+
19
+ # Install Rust.
20
+ - run:
21
+ name: Install Rust
22
+ command: |
23
+ test -d /usr/local/cargo || curl https://sh.rustup.rs -sSf | sh -s -- -y
24
+
25
+ # Install `just` used to manage the project.
26
+ - run:
27
+ name: Install just
28
+ command: |
29
+ export PATH="$HOME/.cargo/bin:$PATH"
30
+ test -f $HOME/.cargo/bin/just || cargo install just
31
+
32
+ # Compile the Ruby extension.
33
+ - run:
34
+ name: Compile the Ruby extension
35
+ command: |
36
+ export PATH="$HOME/.cargo/bin:$PATH"
37
+ just build
38
+
39
+ # Save everything in the cache (except the `just` binary).
40
+ - save_cache:
41
+ paths:
42
+ - /usr/local/cargo/registry
43
+ - target/release/.fingerprint
44
+ - target/release/build
45
+ - target/release/deps
46
+ key: v1-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
47
+
48
+ # Run the extension test suites.
49
+ - run:
50
+ name: Test the extension
51
+ command: |
52
+ export PATH="$HOME/.cargo/bin:$PATH"
53
+ gem install bundler
54
+ just test
55
+
56
+
57
+ # List of workflows.
58
+ workflows:
59
+ version: 2
60
+
61
+ # The build workflow.
62
+ build:
63
+ jobs:
64
+ # Run the `build_and_test` job for all branches and all tags.
65
+ - build_and_test:
66
+ filters:
67
+ branches:
68
+ only: /.*/
69
+ tags:
70
+ only: /.*/
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: "\U0001F41E Bug report"
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: "\U0001F41E bug"
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ Thanks for the bug report!
11
+
12
+ ### Describe the bug
13
+
14
+ A clear and concise description of what the bug is.
15
+
16
+ ### Steps to reproduce
17
+
18
+ 1. Compile with '…'
19
+ 2. Run '…'
20
+ 3. See error
21
+
22
+ If applicable, add a link to a test case (as a zip file or link to a repository we can clone).
23
+
24
+ ### Expected behavior
25
+
26
+ A clear and concise description of what you expected to happen.
27
+
28
+ ### Actual behavior
29
+
30
+ A clear and concise description of what actually happened.
31
+
32
+ If applicable, add screenshots to help explain your problem.
33
+
34
+ ### Additional context
35
+
36
+ Add any other context about the problem here.
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: "\U0001F389 Feature request"
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: "\U0001F389 enhancement"
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ Thanks for proposing a new feature!
11
+
12
+ ### Motivation
13
+
14
+ A clear and concise description of what the motivation for the new feature is, and what problem it is solving.
15
+
16
+ ### Proposed solution
17
+
18
+ A clear and concise description of the feature you would like to add, and how it solves the motivating problem.
19
+
20
+ ### Alternatives
21
+
22
+ A clear and concise description of any alternative solutions or features you've considered, and why you're proposed solution is better.
23
+
24
+ ### Additional context
25
+
26
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: "❓ Question"
3
+ about: Ask a question about this project
4
+ title: ''
5
+ labels: "❓ question"
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ### Summary
11
+
12
+ A clear and concise summary of your question.
13
+
14
+ ### Additional details
15
+
16
+ Provide any additional details here.
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /Gemfile.lock
2
+ /pkg
3
+ /target
data/Cargo.lock ADDED
@@ -0,0 +1,1230 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ [[package]]
4
+ name = "aho-corasick"
5
+ version = "0.7.3"
6
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7
+ dependencies = [
8
+ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
9
+ ]
10
+
11
+ [[package]]
12
+ name = "ansi_term"
13
+ version = "0.11.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ dependencies = [
16
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "arrayref"
21
+ version = "0.3.5"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+
24
+ [[package]]
25
+ name = "arrayvec"
26
+ version = "0.4.10"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ dependencies = [
29
+ "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "atty"
34
+ version = "0.2.11"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ dependencies = [
37
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
38
+ "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
39
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "autocfg"
44
+ version = "0.1.2"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+
47
+ [[package]]
48
+ name = "backtrace"
49
+ version = "0.3.15"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ dependencies = [
52
+ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
53
+ "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
54
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
55
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
56
+ "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
57
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "backtrace-sys"
62
+ version = "0.1.28"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ dependencies = [
65
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
66
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "bindgen"
71
+ version = "0.46.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ dependencies = [
74
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
75
+ "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
76
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
77
+ "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)",
78
+ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
79
+ "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
80
+ "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
81
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
82
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
83
+ "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
84
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
85
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
86
+ "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
87
+ "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "bitflags"
92
+ version = "1.0.4"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+
95
+ [[package]]
96
+ name = "blake2b_simd"
97
+ version = "0.4.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ dependencies = [
100
+ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
101
+ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
102
+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
103
+ "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "byteorder"
108
+ version = "1.3.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+
111
+ [[package]]
112
+ name = "cast"
113
+ version = "0.2.2"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+
116
+ [[package]]
117
+ name = "cc"
118
+ version = "1.0.35"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+
121
+ [[package]]
122
+ name = "cexpr"
123
+ version = "0.3.5"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ dependencies = [
126
+ "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "cfg-if"
131
+ version = "0.1.7"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+
134
+ [[package]]
135
+ name = "clang-sys"
136
+ version = "0.26.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ dependencies = [
139
+ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
140
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
141
+ "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap"
146
+ version = "2.33.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ dependencies = [
149
+ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
150
+ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
151
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
152
+ "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
153
+ "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
154
+ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
155
+ "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "cloudabi"
160
+ version = "0.0.3"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ dependencies = [
163
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "cmake"
168
+ version = "0.1.38"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ dependencies = [
171
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "constant_time_eq"
176
+ version = "0.1.3"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+
179
+ [[package]]
180
+ name = "cranelift-bforest"
181
+ version = "0.30.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ dependencies = [
184
+ "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "cranelift-codegen"
189
+ version = "0.30.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ dependencies = [
192
+ "cranelift-bforest 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
193
+ "cranelift-codegen-meta 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
194
+ "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
195
+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
196
+ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
197
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
198
+ "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "cranelift-codegen-meta"
203
+ version = "0.30.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ dependencies = [
206
+ "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cranelift-entity"
211
+ version = "0.30.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+
214
+ [[package]]
215
+ name = "cranelift-frontend"
216
+ version = "0.30.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ dependencies = [
219
+ "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
220
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
221
+ "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "cranelift-native"
226
+ version = "0.30.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ dependencies = [
229
+ "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
230
+ "raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
231
+ "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "cranelift-wasm"
236
+ version = "0.30.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ dependencies = [
239
+ "cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
240
+ "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
241
+ "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
242
+ "cranelift-frontend 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
243
+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
244
+ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
245
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
246
+ "wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "crossbeam-deque"
251
+ version = "0.2.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ dependencies = [
254
+ "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
255
+ "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "crossbeam-epoch"
260
+ version = "0.3.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ dependencies = [
263
+ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
264
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
265
+ "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
266
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
267
+ "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
268
+ "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
269
+ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "crossbeam-utils"
274
+ version = "0.2.2"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ dependencies = [
277
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "digest"
282
+ version = "0.8.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ dependencies = [
285
+ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "either"
290
+ version = "1.5.2"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+
293
+ [[package]]
294
+ name = "env_logger"
295
+ version = "0.6.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ dependencies = [
298
+ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
299
+ "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
300
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
301
+ "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
302
+ "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "errno"
307
+ version = "0.2.4"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ dependencies = [
310
+ "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
311
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
312
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "errno-dragonfly"
317
+ version = "0.1.1"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ dependencies = [
320
+ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
321
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "failure"
326
+ version = "0.1.5"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ dependencies = [
329
+ "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
330
+ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "failure_derive"
335
+ version = "0.1.5"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ dependencies = [
338
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
339
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
340
+ "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
341
+ "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "fuchsia-cprng"
346
+ version = "0.1.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+
349
+ [[package]]
350
+ name = "gcc"
351
+ version = "0.3.55"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+
354
+ [[package]]
355
+ name = "generic-array"
356
+ version = "0.12.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ dependencies = [
359
+ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "glob"
364
+ version = "0.2.11"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+
367
+ [[package]]
368
+ name = "hashbrown"
369
+ version = "0.1.8"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ dependencies = [
372
+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
373
+ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
374
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "hex"
379
+ version = "0.3.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+
382
+ [[package]]
383
+ name = "humantime"
384
+ version = "1.2.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ dependencies = [
387
+ "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "indexmap"
392
+ version = "1.0.2"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+
395
+ [[package]]
396
+ name = "itoa"
397
+ version = "0.4.3"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+
400
+ [[package]]
401
+ name = "kernel32-sys"
402
+ version = "0.2.2"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ dependencies = [
405
+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
406
+ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "lazy_static"
411
+ version = "1.3.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+
414
+ [[package]]
415
+ name = "libc"
416
+ version = "0.2.51"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+
419
+ [[package]]
420
+ name = "libloading"
421
+ version = "0.5.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ dependencies = [
424
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
425
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "lock_api"
430
+ version = "0.1.5"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ dependencies = [
433
+ "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
434
+ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "log"
439
+ version = "0.4.6"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ dependencies = [
442
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "memchr"
447
+ version = "2.2.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+
450
+ [[package]]
451
+ name = "memmap"
452
+ version = "0.7.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ dependencies = [
455
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
456
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "memoffset"
461
+ version = "0.2.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+
464
+ [[package]]
465
+ name = "nix"
466
+ version = "0.12.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ dependencies = [
469
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
470
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
471
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
472
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
473
+ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "nix"
478
+ version = "0.13.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ dependencies = [
481
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
482
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
483
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
484
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
485
+ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "nodrop"
490
+ version = "0.1.13"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+
493
+ [[package]]
494
+ name = "nom"
495
+ version = "4.2.3"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ dependencies = [
498
+ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
499
+ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "num_cpus"
504
+ version = "1.10.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ dependencies = [
507
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "owning_ref"
512
+ version = "0.4.0"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ dependencies = [
515
+ "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "page_size"
520
+ version = "0.4.1"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ dependencies = [
523
+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
524
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
525
+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "parking_lot"
530
+ version = "0.7.1"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ dependencies = [
533
+ "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
534
+ "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "parking_lot_core"
539
+ version = "0.4.0"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ dependencies = [
542
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
543
+ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
544
+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
545
+ "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
546
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "peeking_take_while"
551
+ version = "0.1.2"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+
554
+ [[package]]
555
+ name = "proc-macro2"
556
+ version = "0.4.27"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ dependencies = [
559
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "quick-error"
564
+ version = "1.2.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+
567
+ [[package]]
568
+ name = "quote"
569
+ version = "0.6.12"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ dependencies = [
572
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "rand"
577
+ version = "0.6.5"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ dependencies = [
580
+ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
581
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
582
+ "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
583
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
584
+ "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
585
+ "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
586
+ "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
587
+ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
588
+ "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
589
+ "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
590
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "rand_chacha"
595
+ version = "0.1.1"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ dependencies = [
598
+ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
599
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "rand_core"
604
+ version = "0.3.1"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ dependencies = [
607
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "rand_core"
612
+ version = "0.4.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+
615
+ [[package]]
616
+ name = "rand_hc"
617
+ version = "0.1.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ dependencies = [
620
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "rand_isaac"
625
+ version = "0.1.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ dependencies = [
628
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "rand_jitter"
633
+ version = "0.1.3"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ dependencies = [
636
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
637
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
638
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "rand_os"
643
+ version = "0.1.3"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ dependencies = [
646
+ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
647
+ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
648
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
649
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
650
+ "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
651
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "rand_pcg"
656
+ version = "0.1.2"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ dependencies = [
659
+ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
660
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "rand_xorshift"
665
+ version = "0.1.1"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ dependencies = [
668
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "raw-cpuid"
673
+ version = "6.1.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ dependencies = [
676
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
677
+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
678
+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "rayon"
683
+ version = "1.0.3"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ dependencies = [
686
+ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
687
+ "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
688
+ "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "rayon-core"
693
+ version = "1.4.1"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ dependencies = [
696
+ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
697
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
698
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
699
+ "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "rdrand"
704
+ version = "0.4.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ dependencies = [
707
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "redox_syscall"
712
+ version = "0.1.54"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+
715
+ [[package]]
716
+ name = "redox_termios"
717
+ version = "0.1.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ dependencies = [
720
+ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "regex"
725
+ version = "1.1.5"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ dependencies = [
728
+ "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
729
+ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
730
+ "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
731
+ "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
732
+ "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "regex-syntax"
737
+ version = "0.6.6"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ dependencies = [
740
+ "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "ruby-ext-wasm"
745
+ version = "0.1.1"
746
+ dependencies = [
747
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
748
+ "rutie 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
749
+ "wasmer-runtime 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
750
+ "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "rustc-demangle"
755
+ version = "0.1.14"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+
758
+ [[package]]
759
+ name = "rustc_version"
760
+ version = "0.2.3"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ dependencies = [
763
+ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "rutie"
768
+ version = "0.5.4"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ dependencies = [
771
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
772
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "ryu"
777
+ version = "0.2.7"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+
780
+ [[package]]
781
+ name = "scopeguard"
782
+ version = "0.3.3"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+
785
+ [[package]]
786
+ name = "semver"
787
+ version = "0.9.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ dependencies = [
790
+ "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "semver-parser"
795
+ version = "0.7.0"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+
798
+ [[package]]
799
+ name = "serde"
800
+ version = "1.0.90"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+
803
+ [[package]]
804
+ name = "serde-bench"
805
+ version = "0.0.7"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ dependencies = [
808
+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
809
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "serde_bytes"
814
+ version = "0.10.5"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ dependencies = [
817
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "serde_derive"
822
+ version = "1.0.90"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ dependencies = [
825
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
826
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
827
+ "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "serde_json"
832
+ version = "1.0.39"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ dependencies = [
835
+ "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
836
+ "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
837
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "smallvec"
842
+ version = "0.6.9"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+
845
+ [[package]]
846
+ name = "stable_deref_trait"
847
+ version = "1.1.1"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+
850
+ [[package]]
851
+ name = "strsim"
852
+ version = "0.8.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+
855
+ [[package]]
856
+ name = "syn"
857
+ version = "0.15.31"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ dependencies = [
860
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
861
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
862
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "synstructure"
867
+ version = "0.10.1"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ dependencies = [
870
+ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
871
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
872
+ "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
873
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "target-lexicon"
878
+ version = "0.3.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ dependencies = [
881
+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
882
+ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
883
+ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "termcolor"
888
+ version = "1.0.4"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ dependencies = [
891
+ "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "termion"
896
+ version = "1.5.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ dependencies = [
899
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
900
+ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
901
+ "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "textwrap"
906
+ version = "0.11.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ dependencies = [
909
+ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "thread_local"
914
+ version = "0.3.6"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ dependencies = [
917
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "typenum"
922
+ version = "1.10.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+
925
+ [[package]]
926
+ name = "ucd-util"
927
+ version = "0.1.3"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+
930
+ [[package]]
931
+ name = "unicode-width"
932
+ version = "0.1.5"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+
935
+ [[package]]
936
+ name = "unicode-xid"
937
+ version = "0.1.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+
940
+ [[package]]
941
+ name = "utf8-ranges"
942
+ version = "1.0.2"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+
945
+ [[package]]
946
+ name = "vec_map"
947
+ version = "0.8.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+
950
+ [[package]]
951
+ name = "version_check"
952
+ version = "0.1.5"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+
955
+ [[package]]
956
+ name = "void"
957
+ version = "1.0.2"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+
960
+ [[package]]
961
+ name = "wasmer-clif-backend"
962
+ version = "0.3.0"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ dependencies = [
965
+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
966
+ "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
967
+ "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
968
+ "cranelift-native 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
969
+ "cranelift-wasm 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
970
+ "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
971
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
972
+ "nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
973
+ "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
974
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
975
+ "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
976
+ "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
977
+ "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
978
+ "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
979
+ "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
980
+ "wasmer-win-exception-handler 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
981
+ "wasmparser 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
982
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "wasmer-runtime"
987
+ version = "0.3.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ dependencies = [
990
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
991
+ "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
992
+ "wasmer-clif-backend 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
993
+ "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "wasmer-runtime-core"
998
+ version = "0.3.0"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ dependencies = [
1001
+ "blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1002
+ "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
1003
+ "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
1004
+ "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
1005
+ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
1006
+ "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
1007
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1008
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1009
+ "nix 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
1010
+ "page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1011
+ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1012
+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
1013
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
1014
+ "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
1015
+ "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
1016
+ "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
1017
+ "wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)",
1018
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "wasmer-win-exception-handler"
1023
+ version = "0.3.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ dependencies = [
1026
+ "bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)",
1027
+ "cmake 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
1028
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1029
+ "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1030
+ "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1031
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "wasmparser"
1036
+ version = "0.23.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+
1039
+ [[package]]
1040
+ name = "wasmparser"
1041
+ version = "0.29.2"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+
1044
+ [[package]]
1045
+ name = "which"
1046
+ version = "2.0.1"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ dependencies = [
1049
+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1050
+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "winapi"
1055
+ version = "0.2.8"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+
1058
+ [[package]]
1059
+ name = "winapi"
1060
+ version = "0.3.7"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ dependencies = [
1063
+ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1064
+ "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "winapi-build"
1069
+ version = "0.1.1"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+
1072
+ [[package]]
1073
+ name = "winapi-i686-pc-windows-gnu"
1074
+ version = "0.4.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+
1077
+ [[package]]
1078
+ name = "winapi-util"
1079
+ version = "0.1.2"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ dependencies = [
1082
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "winapi-x86_64-pc-windows-gnu"
1087
+ version = "0.4.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+
1090
+ [[package]]
1091
+ name = "wincolor"
1092
+ version = "1.0.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ dependencies = [
1095
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1096
+ "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1097
+ ]
1098
+
1099
+ [metadata]
1100
+ "checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c"
1101
+ "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
1102
+ "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
1103
+ "checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71"
1104
+ "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
1105
+ "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799"
1106
+ "checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637"
1107
+ "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6"
1108
+ "checksum bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8f7f7f0701772b17de73e4f5cbcb1dd6926f4706cba4c1ab62c5367f8bdc94e1"
1109
+ "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
1110
+ "checksum blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce2571a6cd634670daa2977cc894c1cc2ba57c563c498e5a82c35446f34d056e"
1111
+ "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb"
1112
+ "checksum cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427"
1113
+ "checksum cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83"
1114
+ "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af"
1115
+ "checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4"
1116
+ "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4"
1117
+ "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
1118
+ "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
1119
+ "checksum cmake 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)" = "96210eec534fc3fbfc0452a63769424eaa80205fda6cea98e5b61cb3d97bcec8"
1120
+ "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
1121
+ "checksum cranelift-bforest 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5a357d20666bf4a8c2d626a19f1b59dbca66cd844fb1e66c5612254fd0f7505"
1122
+ "checksum cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab00cb149a5bb0f7e6dd391357356a5d71c335a431e8eece94f32da2d5a043f7"
1123
+ "checksum cranelift-codegen-meta 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3797a2f450ac71297e083dd440d0cdd0d3bceabe4a3ca6bcb9e4077e9c0327d"
1124
+ "checksum cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b66e28877b75b3d2b31250f780bb5db8f68ae3df681cd56add803b2567ac4fd"
1125
+ "checksum cranelift-frontend 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b72d55fd732b1f7a99d043a36c54a5679b6ec8bc777c8d954fb97c4fa0fce7eb"
1126
+ "checksum cranelift-native 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0239f34836621a127c2132980b2f5c32a1be1c40e2d1a9a1a9bd5af33c12aee"
1127
+ "checksum cranelift-wasm 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "740ebfba28c8433f06750f84819f1eb663ea9f5e4b9a81c01f4e52262d868b56"
1128
+ "checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
1129
+ "checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150"
1130
+ "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
1131
+ "checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c"
1132
+ "checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b"
1133
+ "checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a"
1134
+ "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
1135
+ "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
1136
+ "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
1137
+ "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
1138
+ "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1139
+ "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
1140
+ "checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592"
1141
+ "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
1142
+ "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
1143
+ "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
1144
+ "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
1145
+ "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
1146
+ "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
1147
+ "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1148
+ "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
1149
+ "checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917"
1150
+ "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2"
1151
+ "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
1152
+ "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6"
1153
+ "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
1154
+ "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
1155
+ "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
1156
+ "checksum nix 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "921f61dc817b379d0834e45d5ec45beaacfae97082090a49c2cf30dcbc30206f"
1157
+ "checksum nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46f0f3210768d796e8fa79ec70ee6af172dacbe7147f5e69be5240a47778302b"
1158
+ "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
1159
+ "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
1160
+ "checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba"
1161
+ "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
1162
+ "checksum page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f89ef58b3d32420dbd1a43d2f38ae92f6239ef12bb556ab09ca55445f5a67242"
1163
+ "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
1164
+ "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
1165
+ "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1166
+ "checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915"
1167
+ "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
1168
+ "checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
1169
+ "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
1170
+ "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
1171
+ "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1172
+ "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
1173
+ "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
1174
+ "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
1175
+ "checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832"
1176
+ "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
1177
+ "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
1178
+ "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
1179
+ "checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d"
1180
+ "checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473"
1181
+ "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356"
1182
+ "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1183
+ "checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252"
1184
+ "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
1185
+ "checksum regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "559008764a17de49a3146b234641644ed37d118d1ef641a0bb573d146edc6ce0"
1186
+ "checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96"
1187
+ "checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288"
1188
+ "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1189
+ "checksum rutie 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "71e16dec514e9f92eb333c7f29037293e0a7515610db04a65138618f10a3d12e"
1190
+ "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7"
1191
+ "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
1192
+ "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1193
+ "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1194
+ "checksum serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4"
1195
+ "checksum serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d733da87e79faaac25616e33d26299a41143fd4cd42746cbb0e91d8feea243fd"
1196
+ "checksum serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" = "defbb8a83d7f34cc8380751eeb892b825944222888aff18996ea7901f24aec88"
1197
+ "checksum serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "58fc82bec244f168b23d1963b45c8bf5726e9a15a9d146a067f9081aeed2de79"
1198
+ "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d"
1199
+ "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be"
1200
+ "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
1201
+ "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1202
+ "checksum syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b4cfac95805274c6afdb12d8f770fa2d27c045953e7b630a81801953699a9a"
1203
+ "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
1204
+ "checksum target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d6923974ce4eb5bd28814756256d8ab71c28dd6e7483313fe7ab6614306bf633"
1205
+ "checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
1206
+ "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
1207
+ "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1208
+ "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
1209
+ "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
1210
+ "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
1211
+ "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
1212
+ "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
1213
+ "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
1214
+ "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
1215
+ "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
1216
+ "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
1217
+ "checksum wasmer-clif-backend 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0afacbd83b3897e59ac7686ebeed7c39bfae20bcf150869eb695e55afe19e91a"
1218
+ "checksum wasmer-runtime 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "272c74d8494e4c59dba5df3a256e7661d1684ad7d8b425b80e9fe80124def568"
1219
+ "checksum wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b9fd8e1f3c4eac86563394354aee2b8dfc59a8b9f7051478dfb27bff568b668"
1220
+ "checksum wasmer-win-exception-handler 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46e37084fc382f419fa06e09ffd388aa1e2eaeeb6bfa3b8edd311f3f857751e9"
1221
+ "checksum wasmparser 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5e01c420bc7d36e778bd242e1167b079562ba8b34087122cc9057187026d060"
1222
+ "checksum wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)" = "981a8797cf89762e0233ec45fae731cb79a4dfaee12d9f0fe6cee01e4ac58d00"
1223
+ "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
1224
+ "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
1225
+ "checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770"
1226
+ "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
1227
+ "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1228
+ "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
1229
+ "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1230
+ "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"