wasmer 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -4
- data/Cargo.lock +371 -312
- data/Cargo.toml +4 -4
- data/README.md +17 -16
- data/bors.toml +4 -0
- data/lib/wasmer/version.rb +1 -1
- data/src/error.rs +16 -0
- data/src/instance.rs +126 -97
- data/src/lib.rs +76 -50
- data/src/memory/mod.rs +72 -33
- data/src/memory/view.rs +36 -18
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c4151bdc88e7a63c42854fa282814c132162f2e1bd26888943ea24169ab9af4
|
4
|
+
data.tar.gz: 8dd6e8bff83326bb782bb829b773f41eda4e8c78177eb6f3d3d1e4087c684f4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2930f032201397d34a916ae3b7e246950f2b253815f1755e4189dcf7a362631d7a3fc670136690ea0e3a0ddcdf3fa45e5bceffb9fb0ce93981d4c5a59dbf042
|
7
|
+
data.tar.gz: 42a09a7eade59b671d6523d51a3806d10371b8dea6293338d2ba791bc2e88c0ba05f638dabfc159b3c30794c305eba3290925419f49dd8992756f94e1e3090ce
|
data/.circleci/config.yml
CHANGED
@@ -3,7 +3,7 @@ version: 2.1
|
|
3
3
|
# List of all jobs.
|
4
4
|
jobs:
|
5
5
|
# Build and test the project the project.
|
6
|
-
|
6
|
+
build-and-test:
|
7
7
|
docker:
|
8
8
|
- image: circleci/ruby:latest
|
9
9
|
steps:
|
@@ -61,10 +61,12 @@ workflows:
|
|
61
61
|
# The build workflow.
|
62
62
|
build:
|
63
63
|
jobs:
|
64
|
-
# Run the `
|
65
|
-
-
|
64
|
+
# Run the `build-and-test` job for the `trying` and `staging` branches, and all tags.
|
65
|
+
- build-and-test:
|
66
66
|
filters:
|
67
67
|
branches:
|
68
|
-
only:
|
68
|
+
only:
|
69
|
+
- trying
|
70
|
+
- staging
|
69
71
|
tags:
|
70
72
|
only: /.*/
|
data/Cargo.lock
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
[[package]]
|
4
4
|
name = "aho-corasick"
|
5
|
-
version = "0.7.
|
5
|
+
version = "0.7.4"
|
6
6
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
7
7
|
dependencies = [
|
8
|
-
"memchr 2.2.
|
8
|
+
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
9
9
|
]
|
10
10
|
|
11
11
|
[[package]]
|
@@ -16,6 +16,11 @@ dependencies = [
|
|
16
16
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
17
17
|
]
|
18
18
|
|
19
|
+
[[package]]
|
20
|
+
name = "approx"
|
21
|
+
version = "0.1.1"
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
23
|
+
|
19
24
|
[[package]]
|
20
25
|
name = "arrayref"
|
21
26
|
version = "0.3.5"
|
@@ -23,7 +28,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
28
|
|
24
29
|
[[package]]
|
25
30
|
name = "arrayvec"
|
26
|
-
version = "0.4.
|
31
|
+
version = "0.4.11"
|
27
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
28
33
|
dependencies = [
|
29
34
|
"nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -31,39 +36,46 @@ dependencies = [
|
|
31
36
|
|
32
37
|
[[package]]
|
33
38
|
name = "atty"
|
34
|
-
version = "0.2.
|
39
|
+
version = "0.2.12"
|
35
40
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
41
|
dependencies = [
|
37
|
-
"libc 0.2.
|
38
|
-
"termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
42
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
39
43
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
40
44
|
]
|
41
45
|
|
42
46
|
[[package]]
|
43
47
|
name = "autocfg"
|
44
|
-
version = "0.1.
|
48
|
+
version = "0.1.4"
|
45
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
46
50
|
|
47
51
|
[[package]]
|
48
52
|
name = "backtrace"
|
49
|
-
version = "0.3.
|
53
|
+
version = "0.3.32"
|
50
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
51
55
|
dependencies = [
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"
|
55
|
-
"
|
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)",
|
56
|
+
"backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
57
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
58
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
59
|
+
"rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
58
60
|
]
|
59
61
|
|
60
62
|
[[package]]
|
61
63
|
name = "backtrace-sys"
|
62
|
-
version = "0.1.
|
64
|
+
version = "0.1.30"
|
63
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
64
66
|
dependencies = [
|
65
|
-
"cc 1.0.
|
66
|
-
"libc 0.2.
|
67
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
68
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
69
|
+
]
|
70
|
+
|
71
|
+
[[package]]
|
72
|
+
name = "bincode"
|
73
|
+
version = "1.1.4"
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
75
|
+
dependencies = [
|
76
|
+
"autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
77
|
+
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
78
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
67
79
|
]
|
68
80
|
|
69
81
|
[[package]]
|
@@ -71,25 +83,25 @@ name = "bindgen"
|
|
71
83
|
version = "0.46.0"
|
72
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
85
|
dependencies = [
|
74
|
-
"bitflags 1.0
|
86
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
75
87
|
"cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
76
|
-
"cfg-if 0.1.
|
88
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
77
89
|
"clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
78
90
|
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
79
|
-
"env_logger 0.6.
|
91
|
+
"env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
80
92
|
"hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
81
93
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
82
|
-
"log 0.4.
|
94
|
+
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
83
95
|
"peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
84
|
-
"proc-macro2 0.4.
|
85
|
-
"quote 0.6.
|
86
|
-
"regex 1.1.
|
96
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
97
|
+
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
98
|
+
"regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
87
99
|
"which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
88
100
|
]
|
89
101
|
|
90
102
|
[[package]]
|
91
103
|
name = "bitflags"
|
92
|
-
version = "1.0
|
104
|
+
version = "1.1.0"
|
93
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
106
|
|
95
107
|
[[package]]
|
@@ -98,24 +110,19 @@ version = "0.4.1"
|
|
98
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
99
111
|
dependencies = [
|
100
112
|
"arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
101
|
-
"arrayvec 0.4.
|
102
|
-
"byteorder 1.3.
|
113
|
+
"arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
114
|
+
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
103
115
|
"constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
104
116
|
]
|
105
117
|
|
106
118
|
[[package]]
|
107
119
|
name = "byteorder"
|
108
|
-
version = "1.3.
|
109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
|
-
|
111
|
-
[[package]]
|
112
|
-
name = "cast"
|
113
|
-
version = "0.2.2"
|
120
|
+
version = "1.3.2"
|
114
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
122
|
|
116
123
|
[[package]]
|
117
124
|
name = "cc"
|
118
|
-
version = "1.0.
|
125
|
+
version = "1.0.37"
|
119
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
120
127
|
|
121
128
|
[[package]]
|
@@ -128,17 +135,27 @@ dependencies = [
|
|
128
135
|
|
129
136
|
[[package]]
|
130
137
|
name = "cfg-if"
|
131
|
-
version = "0.1.
|
138
|
+
version = "0.1.9"
|
132
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
140
|
|
141
|
+
[[package]]
|
142
|
+
name = "cgmath"
|
143
|
+
version = "0.16.1"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
dependencies = [
|
146
|
+
"approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
147
|
+
"num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
148
|
+
"rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
149
|
+
]
|
150
|
+
|
134
151
|
[[package]]
|
135
152
|
name = "clang-sys"
|
136
153
|
version = "0.26.4"
|
137
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
138
155
|
dependencies = [
|
139
156
|
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
140
|
-
"libc 0.2.
|
141
|
-
"libloading 0.5.
|
157
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
158
|
+
"libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
142
159
|
]
|
143
160
|
|
144
161
|
[[package]]
|
@@ -147,8 +164,8 @@ version = "2.33.0"
|
|
147
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
148
165
|
dependencies = [
|
149
166
|
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
150
|
-
"atty 0.2.
|
151
|
-
"bitflags 1.0
|
167
|
+
"atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
168
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
152
169
|
"strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
153
170
|
"textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
154
171
|
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -160,15 +177,24 @@ name = "cloudabi"
|
|
160
177
|
version = "0.0.3"
|
161
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
179
|
dependencies = [
|
163
|
-
"bitflags 1.0
|
180
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
164
181
|
]
|
165
182
|
|
166
183
|
[[package]]
|
167
184
|
name = "cmake"
|
168
|
-
version = "0.1.
|
185
|
+
version = "0.1.40"
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
+
dependencies = [
|
188
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
189
|
+
]
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "colored"
|
193
|
+
version = "1.8.0"
|
169
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
170
195
|
dependencies = [
|
171
|
-
"
|
196
|
+
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
197
|
+
"winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
172
198
|
]
|
173
199
|
|
174
200
|
[[package]]
|
@@ -178,111 +204,94 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
204
|
|
179
205
|
[[package]]
|
180
206
|
name = "cranelift-bforest"
|
181
|
-
version = "0.
|
207
|
+
version = "0.31.0"
|
182
208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
209
|
dependencies = [
|
184
|
-
"cranelift-entity 0.
|
210
|
+
"cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
185
211
|
]
|
186
212
|
|
187
213
|
[[package]]
|
188
214
|
name = "cranelift-codegen"
|
189
|
-
version = "0.
|
215
|
+
version = "0.31.0"
|
190
216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
191
217
|
dependencies = [
|
192
|
-
"cranelift-bforest 0.
|
193
|
-
"cranelift-codegen-meta 0.
|
194
|
-
"cranelift-entity 0.
|
218
|
+
"cranelift-bforest 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
219
|
+
"cranelift-codegen-meta 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
220
|
+
"cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
195
221
|
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
196
222
|
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
197
|
-
"log 0.4.
|
198
|
-
"target-lexicon 0.
|
223
|
+
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
224
|
+
"target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
199
225
|
]
|
200
226
|
|
201
227
|
[[package]]
|
202
228
|
name = "cranelift-codegen-meta"
|
203
|
-
version = "0.
|
229
|
+
version = "0.31.0"
|
204
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
231
|
dependencies = [
|
206
|
-
"cranelift-entity 0.
|
232
|
+
"cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
207
233
|
]
|
208
234
|
|
209
235
|
[[package]]
|
210
236
|
name = "cranelift-entity"
|
211
|
-
version = "0.
|
212
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
213
|
-
|
214
|
-
[[package]]
|
215
|
-
name = "cranelift-frontend"
|
216
|
-
version = "0.30.0"
|
237
|
+
version = "0.31.0"
|
217
238
|
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
239
|
|
224
240
|
[[package]]
|
225
241
|
name = "cranelift-native"
|
226
|
-
version = "0.
|
242
|
+
version = "0.31.0"
|
227
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
244
|
dependencies = [
|
229
|
-
"cranelift-codegen 0.
|
245
|
+
"cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
230
246
|
"raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
231
|
-
"target-lexicon 0.
|
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
|
+
"target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
247
248
|
]
|
248
249
|
|
249
250
|
[[package]]
|
250
251
|
name = "crossbeam-deque"
|
251
|
-
version = "0.
|
252
|
+
version = "0.6.3"
|
252
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
254
|
dependencies = [
|
254
|
-
"crossbeam-epoch 0.
|
255
|
-
"crossbeam-utils 0.
|
255
|
+
"crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
256
|
+
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
256
257
|
]
|
257
258
|
|
258
259
|
[[package]]
|
259
260
|
name = "crossbeam-epoch"
|
260
|
-
version = "0.
|
261
|
+
version = "0.7.1"
|
261
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
263
|
dependencies = [
|
263
|
-
"arrayvec 0.4.
|
264
|
-
"cfg-if 0.1.
|
265
|
-
"crossbeam-utils 0.
|
264
|
+
"arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
265
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
266
|
+
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
266
267
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
267
268
|
"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
269
|
"scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
270
270
|
]
|
271
271
|
|
272
|
+
[[package]]
|
273
|
+
name = "crossbeam-queue"
|
274
|
+
version = "0.1.2"
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
|
+
dependencies = [
|
277
|
+
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
278
|
+
]
|
279
|
+
|
272
280
|
[[package]]
|
273
281
|
name = "crossbeam-utils"
|
274
|
-
version = "0.
|
282
|
+
version = "0.6.5"
|
275
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
284
|
dependencies = [
|
277
|
-
"cfg-if 0.1.
|
285
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
286
|
+
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
278
287
|
]
|
279
288
|
|
280
289
|
[[package]]
|
281
290
|
name = "digest"
|
282
|
-
version = "0.8.
|
291
|
+
version = "0.8.1"
|
283
292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
293
|
dependencies = [
|
285
|
-
"generic-array 0.12.
|
294
|
+
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
286
295
|
]
|
287
296
|
|
288
297
|
[[package]]
|
@@ -292,14 +301,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
301
|
|
293
302
|
[[package]]
|
294
303
|
name = "env_logger"
|
295
|
-
version = "0.6.
|
304
|
+
version = "0.6.2"
|
296
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
306
|
dependencies = [
|
298
|
-
"atty 0.2.
|
307
|
+
"atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
299
308
|
"humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
300
|
-
"log 0.4.
|
301
|
-
"regex 1.1.
|
302
|
-
"termcolor 1.0.
|
309
|
+
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
310
|
+
"regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
311
|
+
"termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
303
312
|
]
|
304
313
|
|
305
314
|
[[package]]
|
@@ -308,7 +317,7 @@ version = "0.2.4"
|
|
308
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
318
|
dependencies = [
|
310
319
|
"errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
311
|
-
"libc 0.2.
|
320
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
312
321
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
313
322
|
]
|
314
323
|
|
@@ -318,7 +327,7 @@ version = "0.1.1"
|
|
318
327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
319
328
|
dependencies = [
|
320
329
|
"gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
|
321
|
-
"libc 0.2.
|
330
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
322
331
|
]
|
323
332
|
|
324
333
|
[[package]]
|
@@ -326,7 +335,7 @@ name = "failure"
|
|
326
335
|
version = "0.1.5"
|
327
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
328
337
|
dependencies = [
|
329
|
-
"backtrace 0.3.
|
338
|
+
"backtrace 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)",
|
330
339
|
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
331
340
|
]
|
332
341
|
|
@@ -335,10 +344,10 @@ name = "failure_derive"
|
|
335
344
|
version = "0.1.5"
|
336
345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
346
|
dependencies = [
|
338
|
-
"proc-macro2 0.4.
|
339
|
-
"quote 0.6.
|
340
|
-
"syn 0.15.
|
341
|
-
"synstructure 0.10.
|
347
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
348
|
+
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
349
|
+
"syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
|
350
|
+
"synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
342
351
|
]
|
343
352
|
|
344
353
|
[[package]]
|
@@ -353,7 +362,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
362
|
|
354
363
|
[[package]]
|
355
364
|
name = "generic-array"
|
356
|
-
version = "0.12.
|
365
|
+
version = "0.12.3"
|
357
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
367
|
dependencies = [
|
359
368
|
"typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -369,9 +378,9 @@ name = "hashbrown"
|
|
369
378
|
version = "0.1.8"
|
370
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
380
|
dependencies = [
|
372
|
-
"byteorder 1.3.
|
381
|
+
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
373
382
|
"scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
374
|
-
"serde 1.0.
|
383
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
375
384
|
]
|
376
385
|
|
377
386
|
[[package]]
|
@@ -394,7 +403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
403
|
|
395
404
|
[[package]]
|
396
405
|
name = "itoa"
|
397
|
-
version = "0.4.
|
406
|
+
version = "0.4.4"
|
398
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
399
408
|
|
400
409
|
[[package]]
|
@@ -413,15 +422,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
422
|
|
414
423
|
[[package]]
|
415
424
|
name = "libc"
|
416
|
-
version = "0.2.
|
425
|
+
version = "0.2.59"
|
417
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
427
|
|
419
428
|
[[package]]
|
420
429
|
name = "libloading"
|
421
|
-
version = "0.5.
|
430
|
+
version = "0.5.2"
|
422
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
423
432
|
dependencies = [
|
424
|
-
"cc 1.0.
|
433
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
425
434
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
426
435
|
]
|
427
436
|
|
@@ -436,15 +445,15 @@ dependencies = [
|
|
436
445
|
|
437
446
|
[[package]]
|
438
447
|
name = "log"
|
439
|
-
version = "0.4.
|
448
|
+
version = "0.4.7"
|
440
449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
441
450
|
dependencies = [
|
442
|
-
"cfg-if 0.1.
|
451
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
443
452
|
]
|
444
453
|
|
445
454
|
[[package]]
|
446
455
|
name = "memchr"
|
447
|
-
version = "2.2.
|
456
|
+
version = "2.2.1"
|
448
457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
458
|
|
450
459
|
[[package]]
|
@@ -452,7 +461,7 @@ name = "memmap"
|
|
452
461
|
version = "0.7.0"
|
453
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
463
|
dependencies = [
|
455
|
-
"libc 0.2.
|
464
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
456
465
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
457
466
|
]
|
458
467
|
|
@@ -463,25 +472,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
472
|
|
464
473
|
[[package]]
|
465
474
|
name = "nix"
|
466
|
-
version = "0.12.
|
475
|
+
version = "0.12.1"
|
467
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
477
|
dependencies = [
|
469
|
-
"bitflags 1.0
|
470
|
-
"cc 1.0.
|
471
|
-
"cfg-if 0.1.
|
472
|
-
"libc 0.2.
|
478
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
479
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
480
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
481
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
473
482
|
"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
474
483
|
]
|
475
484
|
|
476
485
|
[[package]]
|
477
486
|
name = "nix"
|
478
|
-
version = "0.13.
|
487
|
+
version = "0.13.1"
|
479
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
489
|
dependencies = [
|
481
|
-
"bitflags 1.0
|
482
|
-
"cc 1.0.
|
483
|
-
"cfg-if 0.1.
|
484
|
-
"libc 0.2.
|
490
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
491
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
492
|
+
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
493
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
485
494
|
"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
486
495
|
]
|
487
496
|
|
@@ -495,16 +504,32 @@ name = "nom"
|
|
495
504
|
version = "4.2.3"
|
496
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
506
|
dependencies = [
|
498
|
-
"memchr 2.2.
|
507
|
+
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
499
508
|
"version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
500
509
|
]
|
501
510
|
|
511
|
+
[[package]]
|
512
|
+
name = "num-traits"
|
513
|
+
version = "0.1.43"
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
515
|
+
dependencies = [
|
516
|
+
"num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
517
|
+
]
|
518
|
+
|
519
|
+
[[package]]
|
520
|
+
name = "num-traits"
|
521
|
+
version = "0.2.8"
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
+
dependencies = [
|
524
|
+
"autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
525
|
+
]
|
526
|
+
|
502
527
|
[[package]]
|
503
528
|
name = "num_cpus"
|
504
|
-
version = "1.10.
|
529
|
+
version = "1.10.1"
|
505
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
531
|
dependencies = [
|
507
|
-
"libc 0.2.
|
532
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
508
533
|
]
|
509
534
|
|
510
535
|
[[package]]
|
@@ -521,7 +546,7 @@ version = "0.4.1"
|
|
521
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
547
|
dependencies = [
|
523
548
|
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
524
|
-
"libc 0.2.
|
549
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
525
550
|
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
526
551
|
]
|
527
552
|
|
@@ -539,10 +564,10 @@ name = "parking_lot_core"
|
|
539
564
|
version = "0.4.0"
|
540
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
566
|
dependencies = [
|
542
|
-
"libc 0.2.
|
567
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
543
568
|
"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
544
569
|
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
545
|
-
"smallvec 0.6.
|
570
|
+
"smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
546
571
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
547
572
|
]
|
548
573
|
|
@@ -553,7 +578,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
578
|
|
554
579
|
[[package]]
|
555
580
|
name = "proc-macro2"
|
556
|
-
version = "0.4.
|
581
|
+
version = "0.4.30"
|
557
582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
583
|
dependencies = [
|
559
584
|
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -566,10 +591,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
591
|
|
567
592
|
[[package]]
|
568
593
|
name = "quote"
|
569
|
-
version = "0.6.
|
594
|
+
version = "0.6.13"
|
570
595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
596
|
dependencies = [
|
572
|
-
"proc-macro2 0.4.
|
597
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
598
|
+
]
|
599
|
+
|
600
|
+
[[package]]
|
601
|
+
name = "rand"
|
602
|
+
version = "0.4.6"
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
604
|
+
dependencies = [
|
605
|
+
"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
606
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
607
|
+
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
608
|
+
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
609
|
+
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
573
610
|
]
|
574
611
|
|
575
612
|
[[package]]
|
@@ -577,13 +614,13 @@ name = "rand"
|
|
577
614
|
version = "0.6.5"
|
578
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
616
|
dependencies = [
|
580
|
-
"autocfg 0.1.
|
581
|
-
"libc 0.2.
|
617
|
+
"autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
618
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
582
619
|
"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
583
620
|
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
584
621
|
"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
585
622
|
"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
586
|
-
"rand_jitter 0.1.
|
623
|
+
"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
587
624
|
"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
588
625
|
"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
589
626
|
"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -595,7 +632,7 @@ name = "rand_chacha"
|
|
595
632
|
version = "0.1.1"
|
596
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
634
|
dependencies = [
|
598
|
-
"autocfg 0.1.
|
635
|
+
"autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
599
636
|
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
600
637
|
]
|
601
638
|
|
@@ -630,10 +667,10 @@ dependencies = [
|
|
630
667
|
|
631
668
|
[[package]]
|
632
669
|
name = "rand_jitter"
|
633
|
-
version = "0.1.
|
670
|
+
version = "0.1.4"
|
634
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
672
|
dependencies = [
|
636
|
-
"libc 0.2.
|
673
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
637
674
|
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
638
675
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
639
676
|
]
|
@@ -645,7 +682,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
682
|
dependencies = [
|
646
683
|
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
647
684
|
"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
648
|
-
"libc 0.2.
|
685
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
649
686
|
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
650
687
|
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
651
688
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -656,7 +693,7 @@ name = "rand_pcg"
|
|
656
693
|
version = "0.1.2"
|
657
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
695
|
dependencies = [
|
659
|
-
"autocfg 0.1.
|
696
|
+
"autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
660
697
|
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
661
698
|
]
|
662
699
|
|
@@ -673,30 +710,31 @@ name = "raw-cpuid"
|
|
673
710
|
version = "6.1.0"
|
674
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
675
712
|
dependencies = [
|
676
|
-
"bitflags 1.0
|
677
|
-
"cc 1.0.
|
713
|
+
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
714
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
678
715
|
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
679
716
|
]
|
680
717
|
|
681
718
|
[[package]]
|
682
719
|
name = "rayon"
|
683
|
-
version = "1.0
|
720
|
+
version = "1.1.0"
|
684
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
722
|
dependencies = [
|
686
|
-
"crossbeam-deque 0.
|
723
|
+
"crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
687
724
|
"either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
688
|
-
"rayon-core 1.
|
725
|
+
"rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
689
726
|
]
|
690
727
|
|
691
728
|
[[package]]
|
692
729
|
name = "rayon-core"
|
693
|
-
version = "1.
|
730
|
+
version = "1.5.0"
|
694
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
732
|
dependencies = [
|
696
|
-
"crossbeam-deque 0.
|
733
|
+
"crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
734
|
+
"crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
735
|
+
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
697
736
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
698
|
-
"
|
699
|
-
"num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
737
|
+
"num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
700
738
|
]
|
701
739
|
|
702
740
|
[[package]]
|
@@ -707,52 +745,44 @@ dependencies = [
|
|
707
745
|
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
708
746
|
]
|
709
747
|
|
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
748
|
[[package]]
|
724
749
|
name = "regex"
|
725
|
-
version = "1.1.
|
750
|
+
version = "1.1.9"
|
726
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
752
|
dependencies = [
|
728
|
-
"aho-corasick 0.7.
|
729
|
-
"memchr 2.2.
|
730
|
-
"regex-syntax 0.6.
|
753
|
+
"aho-corasick 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
754
|
+
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
755
|
+
"regex-syntax 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
731
756
|
"thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
732
|
-
"utf8-ranges 1.0.
|
757
|
+
"utf8-ranges 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
733
758
|
]
|
734
759
|
|
735
760
|
[[package]]
|
736
761
|
name = "regex-syntax"
|
737
|
-
version = "0.6.
|
762
|
+
version = "0.6.8"
|
738
763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
739
764
|
dependencies = [
|
740
765
|
"ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
741
766
|
]
|
742
767
|
|
768
|
+
[[package]]
|
769
|
+
name = "rgb"
|
770
|
+
version = "0.8.13"
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
772
|
+
|
743
773
|
[[package]]
|
744
774
|
name = "ruby-ext-wasm"
|
745
|
-
version = "0.
|
775
|
+
version = "0.3.0"
|
746
776
|
dependencies = [
|
747
777
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
748
|
-
"rutie 0.
|
749
|
-
"wasmer-runtime 0.
|
750
|
-
"wasmer-runtime-core 0.
|
778
|
+
"rutie 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
779
|
+
"wasmer-runtime 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
780
|
+
"wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
751
781
|
]
|
752
782
|
|
753
783
|
[[package]]
|
754
784
|
name = "rustc-demangle"
|
755
|
-
version = "0.1.
|
785
|
+
version = "0.1.15"
|
756
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
787
|
|
758
788
|
[[package]]
|
@@ -765,16 +795,16 @@ dependencies = [
|
|
765
795
|
|
766
796
|
[[package]]
|
767
797
|
name = "rutie"
|
768
|
-
version = "0.
|
798
|
+
version = "0.6.1"
|
769
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
800
|
dependencies = [
|
771
801
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
772
|
-
"libc 0.2.
|
802
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
773
803
|
]
|
774
804
|
|
775
805
|
[[package]]
|
776
806
|
name = "ryu"
|
777
|
-
version = "0.
|
807
|
+
version = "1.0.0"
|
778
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
779
809
|
|
780
810
|
[[package]]
|
@@ -797,7 +827,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
827
|
|
798
828
|
[[package]]
|
799
829
|
name = "serde"
|
800
|
-
version = "1.0.
|
830
|
+
version = "1.0.94"
|
801
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
802
832
|
|
803
833
|
[[package]]
|
@@ -805,8 +835,8 @@ name = "serde-bench"
|
|
805
835
|
version = "0.0.7"
|
806
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
837
|
dependencies = [
|
808
|
-
"byteorder 1.3.
|
809
|
-
"serde 1.0.
|
838
|
+
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
839
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
810
840
|
]
|
811
841
|
|
812
842
|
[[package]]
|
@@ -814,32 +844,32 @@ name = "serde_bytes"
|
|
814
844
|
version = "0.10.5"
|
815
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
846
|
dependencies = [
|
817
|
-
"serde 1.0.
|
847
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
818
848
|
]
|
819
849
|
|
820
850
|
[[package]]
|
821
851
|
name = "serde_derive"
|
822
|
-
version = "1.0.
|
852
|
+
version = "1.0.94"
|
823
853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
824
854
|
dependencies = [
|
825
|
-
"proc-macro2 0.4.
|
826
|
-
"quote 0.6.
|
827
|
-
"syn 0.15.
|
855
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
856
|
+
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
857
|
+
"syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
|
828
858
|
]
|
829
859
|
|
830
860
|
[[package]]
|
831
861
|
name = "serde_json"
|
832
|
-
version = "1.0.
|
862
|
+
version = "1.0.40"
|
833
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
864
|
dependencies = [
|
835
|
-
"itoa 0.4.
|
836
|
-
"ryu 0.
|
837
|
-
"serde 1.0.
|
865
|
+
"itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
866
|
+
"ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
867
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
838
868
|
]
|
839
869
|
|
840
870
|
[[package]]
|
841
871
|
name = "smallvec"
|
842
|
-
version = "0.6.
|
872
|
+
version = "0.6.10"
|
843
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
874
|
|
845
875
|
[[package]]
|
@@ -854,53 +884,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
884
|
|
855
885
|
[[package]]
|
856
886
|
name = "syn"
|
857
|
-
version = "0.15.
|
887
|
+
version = "0.15.39"
|
858
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
889
|
dependencies = [
|
860
|
-
"proc-macro2 0.4.
|
861
|
-
"quote 0.6.
|
890
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
891
|
+
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
862
892
|
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
863
893
|
]
|
864
894
|
|
865
895
|
[[package]]
|
866
896
|
name = "synstructure"
|
867
|
-
version = "0.10.
|
897
|
+
version = "0.10.2"
|
868
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
899
|
dependencies = [
|
870
|
-
"proc-macro2 0.4.
|
871
|
-
"quote 0.6.
|
872
|
-
"syn 0.15.
|
900
|
+
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
901
|
+
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
902
|
+
"syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
|
873
903
|
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
874
904
|
]
|
875
905
|
|
876
906
|
[[package]]
|
877
907
|
name = "target-lexicon"
|
878
|
-
version = "0.
|
908
|
+
version = "0.4.0"
|
879
909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
880
910
|
dependencies = [
|
881
911
|
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
882
912
|
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
883
|
-
"serde_json 1.0.
|
913
|
+
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
884
914
|
]
|
885
915
|
|
886
916
|
[[package]]
|
887
917
|
name = "termcolor"
|
888
|
-
version = "1.0.
|
918
|
+
version = "1.0.5"
|
889
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
920
|
dependencies = [
|
891
921
|
"wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
892
922
|
]
|
893
923
|
|
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
924
|
[[package]]
|
905
925
|
name = "textwrap"
|
906
926
|
version = "0.11.0"
|
@@ -939,7 +959,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
959
|
|
940
960
|
[[package]]
|
941
961
|
name = "utf8-ranges"
|
942
|
-
version = "1.0.
|
962
|
+
version = "1.0.3"
|
943
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
944
964
|
|
945
965
|
[[package]]
|
@@ -959,87 +979,110 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
979
|
|
960
980
|
[[package]]
|
961
981
|
name = "wasmer-clif-backend"
|
962
|
-
version = "0.
|
982
|
+
version = "0.5.5"
|
963
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
964
984
|
dependencies = [
|
965
|
-
"byteorder 1.3.
|
966
|
-
"cranelift-codegen 0.
|
967
|
-
"cranelift-entity 0.
|
968
|
-
"cranelift-native 0.
|
969
|
-
"cranelift-wasm 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
985
|
+
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
986
|
+
"cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
987
|
+
"cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
988
|
+
"cranelift-native 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
970
989
|
"hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
971
|
-
"libc 0.2.
|
972
|
-
"nix 0.13.
|
973
|
-
"rayon 1.0
|
974
|
-
"serde 1.0.
|
990
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
991
|
+
"nix 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
992
|
+
"rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
993
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
975
994
|
"serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
976
995
|
"serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
977
|
-
"serde_derive 1.0.
|
978
|
-
"target-lexicon 0.
|
979
|
-
"wasmer-
|
980
|
-
"wasmer-
|
981
|
-
"
|
996
|
+
"serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
997
|
+
"target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
998
|
+
"wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
999
|
+
"wasmer-clif-fork-wasm 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1000
|
+
"wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1001
|
+
"wasmer-win-exception-handler 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1002
|
+
"wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
982
1003
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
983
1004
|
]
|
984
1005
|
|
1006
|
+
[[package]]
|
1007
|
+
name = "wasmer-clif-fork-frontend"
|
1008
|
+
version = "0.31.0"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
dependencies = [
|
1011
|
+
"cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1012
|
+
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1013
|
+
"target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "wasmer-clif-fork-wasm"
|
1018
|
+
version = "0.31.0"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
dependencies = [
|
1021
|
+
"cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1022
|
+
"cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1023
|
+
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1024
|
+
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1025
|
+
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1026
|
+
"wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1027
|
+
"wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1028
|
+
]
|
1029
|
+
|
985
1030
|
[[package]]
|
986
1031
|
name = "wasmer-runtime"
|
987
|
-
version = "0.
|
1032
|
+
version = "0.5.5"
|
988
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
989
1034
|
dependencies = [
|
990
1035
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
991
1036
|
"memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
992
|
-
"wasmer-clif-backend 0.
|
993
|
-
"wasmer-runtime-core 0.
|
1037
|
+
"wasmer-clif-backend 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1038
|
+
"wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
994
1039
|
]
|
995
1040
|
|
996
1041
|
[[package]]
|
997
1042
|
name = "wasmer-runtime-core"
|
998
|
-
version = "0.
|
1043
|
+
version = "0.5.5"
|
999
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
1045
|
dependencies = [
|
1046
|
+
"bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
1001
1047
|
"blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1002
|
-
"
|
1048
|
+
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
1049
|
+
"colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1050
|
+
"digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1003
1051
|
"errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
1004
1052
|
"hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
1005
1053
|
"hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
1006
1054
|
"indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
1007
1055
|
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1008
|
-
"libc 0.2.
|
1009
|
-
"nix 0.12.
|
1056
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
1057
|
+
"nix 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1010
1058
|
"page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1011
1059
|
"parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1012
1060
|
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
1013
|
-
"serde 1.0.
|
1061
|
+
"serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
1014
1062
|
"serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1015
1063
|
"serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1016
|
-
"serde_derive 1.0.
|
1017
|
-
"smallvec 0.6.
|
1018
|
-
"wasmparser 0.
|
1064
|
+
"serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
|
1065
|
+
"smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
1066
|
+
"wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1019
1067
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1020
1068
|
]
|
1021
1069
|
|
1022
1070
|
[[package]]
|
1023
1071
|
name = "wasmer-win-exception-handler"
|
1024
|
-
version = "0.
|
1072
|
+
version = "0.5.5"
|
1025
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1026
1074
|
dependencies = [
|
1027
1075
|
"bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1028
|
-
"cmake 0.1.
|
1029
|
-
"libc 0.2.
|
1030
|
-
"regex 1.1.
|
1031
|
-
"wasmer-runtime-core 0.
|
1076
|
+
"cmake 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
1077
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
1078
|
+
"regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
1079
|
+
"wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1032
1080
|
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1033
1081
|
]
|
1034
1082
|
|
1035
1083
|
[[package]]
|
1036
1084
|
name = "wasmparser"
|
1037
|
-
version = "0.
|
1038
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
-
|
1040
|
-
[[package]]
|
1041
|
-
name = "wasmparser"
|
1042
|
-
version = "0.29.2"
|
1085
|
+
version = "0.32.1"
|
1043
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
1087
|
|
1045
1088
|
[[package]]
|
@@ -1048,7 +1091,7 @@ version = "2.0.1"
|
|
1048
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
1092
|
dependencies = [
|
1050
1093
|
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
1051
|
-
"libc 0.2.
|
1094
|
+
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
|
1052
1095
|
]
|
1053
1096
|
|
1054
1097
|
[[package]]
|
@@ -1097,130 +1140,145 @@ dependencies = [
|
|
1097
1140
|
"winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
1098
1141
|
]
|
1099
1142
|
|
1143
|
+
[[package]]
|
1144
|
+
name = "winconsole"
|
1145
|
+
version = "0.10.0"
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1147
|
+
dependencies = [
|
1148
|
+
"cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
1149
|
+
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1150
|
+
"rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
1151
|
+
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
1152
|
+
]
|
1153
|
+
|
1100
1154
|
[metadata]
|
1101
|
-
"checksum aho-corasick 0.7.
|
1155
|
+
"checksum aho-corasick 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "36b7aa1ccb7d7ea3f437cf025a2ab1c47cc6c1bc9fc84918ff449def12f5e282"
|
1102
1156
|
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
1157
|
+
"checksum approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08abcc3b4e9339e33a3d0a5ed15d84a687350c05689d825e0f6655eef9e76a94"
|
1103
1158
|
"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
|
1104
|
-
"checksum arrayvec 0.4.
|
1105
|
-
"checksum atty 0.2.
|
1106
|
-
"checksum autocfg 0.1.
|
1107
|
-
"checksum backtrace 0.3.
|
1108
|
-
"checksum backtrace-sys 0.1.
|
1159
|
+
"checksum arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b8d73f9beda665eaa98ab9e4f7442bd4e7de6652587de55b2525e52e29c1b0ba"
|
1160
|
+
"checksum atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ecaaea69f52b3b18633611ec0007d188517d0366f47ff703d400fa6879d6f8d5"
|
1161
|
+
"checksum autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0e49efa51329a5fd37e7c79db4621af617cd4e3e5bc224939808d076077077bf"
|
1162
|
+
"checksum backtrace 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)" = "18b50f5258d1a9ad8396d2d345827875de4261b158124d4c819d9b351454fae5"
|
1163
|
+
"checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61"
|
1164
|
+
"checksum bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9f04a5e50dc80b3d5d35320889053637d15011aed5e66b66b37ae798c65da6f7"
|
1109
1165
|
"checksum bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8f7f7f0701772b17de73e4f5cbcb1dd6926f4706cba4c1ab62c5367f8bdc94e1"
|
1110
|
-
"checksum bitflags 1.0
|
1166
|
+
"checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd"
|
1111
1167
|
"checksum blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce2571a6cd634670daa2977cc894c1cc2ba57c563c498e5a82c35446f34d056e"
|
1112
|
-
"checksum byteorder 1.3.
|
1113
|
-
"checksum
|
1114
|
-
"checksum cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83"
|
1168
|
+
"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
|
1169
|
+
"checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
|
1115
1170
|
"checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af"
|
1116
|
-
"checksum cfg-if 0.1.
|
1171
|
+
"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33"
|
1172
|
+
"checksum cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "64a4b57c8f4e3a2e9ac07e0f6abc9c24b6fc9e1b54c3478cfb598f3d0023e51c"
|
1117
1173
|
"checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4"
|
1118
1174
|
"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
|
1119
1175
|
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
|
1120
|
-
"checksum cmake 0.1.
|
1176
|
+
"checksum cmake 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "2ca4386c8954b76a8415b63959337d940d724b336cabd3afe189c2b51a7e1ff0"
|
1177
|
+
"checksum colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cdb90b60f2927f8d76139c72dbde7e10c3a2bc47c8594c9c7a66529f2687c03"
|
1121
1178
|
"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
|
1122
|
-
"checksum cranelift-bforest 0.
|
1123
|
-
"checksum cranelift-codegen 0.
|
1124
|
-
"checksum cranelift-codegen-meta 0.
|
1125
|
-
"checksum cranelift-entity 0.
|
1126
|
-
"checksum cranelift-
|
1127
|
-
"checksum
|
1128
|
-
"checksum
|
1129
|
-
"checksum crossbeam-
|
1130
|
-
"checksum crossbeam-
|
1131
|
-
"checksum
|
1132
|
-
"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c"
|
1179
|
+
"checksum cranelift-bforest 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "409f92af3dd276e112b72873a3ef02613e3c5f55b81d5d5d04f3157d4f8b8c54"
|
1180
|
+
"checksum cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b303542a56fba4cbaeea099fb30ed078b50de0e765fd69f7f5f410adbe31d95b"
|
1181
|
+
"checksum cranelift-codegen-meta 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fee15ed430092a6d14b7c6d627540bef732509b8097ae31e4e35526edaa129c"
|
1182
|
+
"checksum cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "739222c3740e4a8d6f0375bd95caba9b6c11afcba9f0e1d4f944d6bd99f84600"
|
1183
|
+
"checksum cranelift-native 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce451162d18b7d82118e23ea7e12f7d8b98557549404bd71215548de79eb0736"
|
1184
|
+
"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
|
1185
|
+
"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4"
|
1186
|
+
"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
|
1187
|
+
"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c"
|
1188
|
+
"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
|
1133
1189
|
"checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b"
|
1134
|
-
"checksum env_logger 0.6.
|
1190
|
+
"checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
|
1135
1191
|
"checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
|
1136
1192
|
"checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
|
1137
1193
|
"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
|
1138
1194
|
"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
|
1139
1195
|
"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
1140
1196
|
"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
|
1141
|
-
"checksum generic-array 0.12.
|
1197
|
+
"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
|
1142
1198
|
"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
|
1143
1199
|
"checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
|
1144
1200
|
"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
|
1145
1201
|
"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
|
1146
1202
|
"checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
|
1147
|
-
"checksum itoa 0.4.
|
1203
|
+
"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
|
1148
1204
|
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
1149
1205
|
"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
|
1150
|
-
"checksum libc 0.2.
|
1151
|
-
"checksum libloading 0.5.
|
1206
|
+
"checksum libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "3262021842bf00fe07dbd6cf34ff25c99d7a7ebef8deea84db72be3ea3bb0aff"
|
1207
|
+
"checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
|
1152
1208
|
"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
|
1153
|
-
"checksum log 0.4.
|
1154
|
-
"checksum memchr 2.2.
|
1209
|
+
"checksum log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "c275b6ad54070ac2d665eef9197db647b32239c9d244bfb6f041a766d00da5b3"
|
1210
|
+
"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
|
1155
1211
|
"checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
|
1156
1212
|
"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
|
1157
|
-
"checksum nix 0.12.
|
1158
|
-
"checksum nix 0.13.
|
1213
|
+
"checksum nix 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "319fffb13b63c0f4ff5a4e1c97566e7e741561ff5d03bf8bbf11653454bbd70b"
|
1214
|
+
"checksum nix 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4dbdc256eaac2e3bd236d93ad999d3479ef775c863dbda3068c4006a92eec51b"
|
1159
1215
|
"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
|
1160
1216
|
"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
|
1161
|
-
"checksum
|
1217
|
+
"checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
|
1218
|
+
"checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32"
|
1219
|
+
"checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273"
|
1162
1220
|
"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
|
1163
1221
|
"checksum page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f89ef58b3d32420dbd1a43d2f38ae92f6239ef12bb556ab09ca55445f5a67242"
|
1164
1222
|
"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
|
1165
1223
|
"checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
|
1166
1224
|
"checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1167
|
-
"checksum proc-macro2 0.4.
|
1225
|
+
"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
|
1168
1226
|
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
|
1169
|
-
"checksum quote 0.6.
|
1227
|
+
"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
|
1228
|
+
"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
|
1170
1229
|
"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
|
1171
1230
|
"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
|
1172
1231
|
"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
1173
1232
|
"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
|
1174
1233
|
"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
|
1175
1234
|
"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
|
1176
|
-
"checksum rand_jitter 0.1.
|
1235
|
+
"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
|
1177
1236
|
"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
|
1178
1237
|
"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
|
1179
1238
|
"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
|
1180
1239
|
"checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d"
|
1181
|
-
"checksum rayon 1.0
|
1182
|
-
"checksum rayon-core 1.
|
1240
|
+
"checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4"
|
1241
|
+
"checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2"
|
1183
1242
|
"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
|
1184
|
-
"checksum
|
1185
|
-
"checksum
|
1186
|
-
"checksum
|
1187
|
-
"checksum
|
1188
|
-
"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288"
|
1243
|
+
"checksum regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "d9d8297cc20bbb6184f8b45ff61c8ee6a9ac56c156cec8e38c3e5084773c44ad"
|
1244
|
+
"checksum regex-syntax 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "9b01330cce219c1c6b2e209e5ed64ccd587ae5c67bed91c0b49eecf02ae40e21"
|
1245
|
+
"checksum rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4f089652ca87f5a82a62935ec6172a534066c7b97be003cc8f702ee9a7a59c92"
|
1246
|
+
"checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af"
|
1189
1247
|
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
1190
|
-
"checksum rutie 0.
|
1191
|
-
"checksum ryu 0.
|
1248
|
+
"checksum rutie 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8ed4df3604d82e3fbd9e4657dd8a8fb23c5d9c0be5779751f0d18bdbb6017c50"
|
1249
|
+
"checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997"
|
1192
1250
|
"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
|
1193
1251
|
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
1194
1252
|
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
1195
|
-
"checksum serde 1.0.
|
1253
|
+
"checksum serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)" = "076a696fdea89c19d3baed462576b8f6d663064414b5c793642da8dfeb99475b"
|
1196
1254
|
"checksum serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d733da87e79faaac25616e33d26299a41143fd4cd42746cbb0e91d8feea243fd"
|
1197
1255
|
"checksum serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" = "defbb8a83d7f34cc8380751eeb892b825944222888aff18996ea7901f24aec88"
|
1198
|
-
"checksum serde_derive 1.0.
|
1199
|
-
"checksum serde_json 1.0.
|
1200
|
-
"checksum smallvec 0.6.
|
1256
|
+
"checksum serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)" = "ef45eb79d6463b22f5f9e16d283798b7c0175ba6050bc25c1a946c122727fe7b"
|
1257
|
+
"checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704"
|
1258
|
+
"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
|
1201
1259
|
"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
|
1202
1260
|
"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
1203
|
-
"checksum syn 0.15.
|
1204
|
-
"checksum synstructure 0.10.
|
1205
|
-
"checksum target-lexicon 0.
|
1206
|
-
"checksum termcolor 1.0.
|
1207
|
-
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
|
1261
|
+
"checksum syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d960b829a55e56db167e861ddb43602c003c7be0bee1d345021703fac2fb7c"
|
1262
|
+
"checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f"
|
1263
|
+
"checksum target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b0ab4982b8945c35cc1c46a83a9094c414f6828a099ce5dcaa8ee2b04642dcb"
|
1264
|
+
"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e"
|
1208
1265
|
"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
1209
1266
|
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
|
1210
1267
|
"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
|
1211
1268
|
"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
|
1212
1269
|
"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
|
1213
1270
|
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
|
1214
|
-
"checksum utf8-ranges 1.0.
|
1271
|
+
"checksum utf8-ranges 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9d50aa7650df78abf942826607c62468ce18d9019673d4a2ebe1865dbb96ffde"
|
1215
1272
|
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
|
1216
1273
|
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
|
1217
1274
|
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
|
1218
|
-
"checksum wasmer-clif-backend 0.
|
1219
|
-
"checksum wasmer-
|
1220
|
-
"checksum wasmer-
|
1221
|
-
"checksum wasmer-
|
1222
|
-
"checksum
|
1223
|
-
"checksum
|
1275
|
+
"checksum wasmer-clif-backend 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c9d23d87d8b9d2548d787b808b99c10cff1b210d82d8a7b081a3a339e63d3fe1"
|
1276
|
+
"checksum wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "620fd484c3348e4bb565d861cddb0c05170337aaa152b6ba61620d054ab17cd9"
|
1277
|
+
"checksum wasmer-clif-fork-wasm 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5e42fa4281de137d5a23b8197d29c218212077c6d55d0dfed7bb80c76308ba4"
|
1278
|
+
"checksum wasmer-runtime 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2bc14bdc1eeecf2ec7df393af1830c82d51e178d450fa0320e45a8f01980548c"
|
1279
|
+
"checksum wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ff7eec0a09a115ccb0c50b726b319f7e3193bd870f82849ee9e81968a10d2392"
|
1280
|
+
"checksum wasmer-win-exception-handler 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "afe92ce57a2f7e6694804719441fe77b3a9217897d3ece4eaec16c2acb4e45cd"
|
1281
|
+
"checksum wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)" = "22d1801de30f112ddaf665291097694ee33a36d1cb414b53a921d05b3519674a"
|
1224
1282
|
"checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
|
1225
1283
|
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
|
1226
1284
|
"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770"
|
@@ -1229,3 +1287,4 @@ dependencies = [
|
|
1229
1287
|
"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
|
1230
1288
|
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1231
1289
|
"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
|
1290
|
+
"checksum winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ef84b96d10db72dd980056666d7f1e7663ce93d82fa33b63e71c966f4cf5032"
|