wasmtime 0.1.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.cargo/config +4 -0
- data/Cargo.lock +1197 -0
- data/Cargo.toml +14 -0
- data/LICENSE +218 -0
- data/README.md +105 -0
- data/ext/wasmtime/Makefile +5 -0
- data/ext/wasmtime/Rakefile +3 -0
- data/ext/wasmtime/extconf.rb +5 -0
- data/lib/tasks/compile.rake +27 -0
- data/lib/wasmtime.rb +7 -0
- data/lib/wasmtime/refinements.rb +20 -0
- data/lib/wasmtime/require.rb +56 -0
- data/lib/wasmtime/version.rb +5 -0
- data/src/func.rs +200 -0
- data/src/instance.rs +94 -0
- data/src/lib.rs +19 -0
- data/src/memory.rs +7 -0
- data/src/vm.rs +6 -0
- metadata +64 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c6d40f922fd4b141e3f39f77539627d538b0b80f044ac105d4667b11a4c8db41
|
4
|
+
data.tar.gz: 89413d7445a2f8057ba9e490d03e7e6706f4098587e9b66f695f4acc6fed4fe9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 78992b42a333874ec2ca7b8df3b302586cb805186035fa73c6e46260f2e9a3c7a29c425fdeacf4f45dc102baf3d1691073128b29e84884572806d6795d73be0d
|
7
|
+
data.tar.gz: d84d88a70ce20ea7c59d1e8b3be906b35bb309644425305385d34faaa87ea776f7f52b1eb27452d1ef099c4dd60ab45e79098eb57a823d4c7b191f163b17a10c
|
data/.cargo/config
ADDED
data/Cargo.lock
ADDED
@@ -0,0 +1,1197 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
[[package]]
|
4
|
+
name = "adler32"
|
5
|
+
version = "1.0.4"
|
6
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
7
|
+
|
8
|
+
[[package]]
|
9
|
+
name = "aho-corasick"
|
10
|
+
version = "0.7.10"
|
11
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
12
|
+
dependencies = [
|
13
|
+
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
14
|
+
]
|
15
|
+
|
16
|
+
[[package]]
|
17
|
+
name = "anyhow"
|
18
|
+
version = "1.0.28"
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
+
|
21
|
+
[[package]]
|
22
|
+
name = "arrayref"
|
23
|
+
version = "0.3.6"
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "arrayvec"
|
28
|
+
version = "0.5.1"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
|
31
|
+
[[package]]
|
32
|
+
name = "atty"
|
33
|
+
version = "0.2.14"
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
+
dependencies = [
|
36
|
+
"hermit-abi 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
37
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
38
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
39
|
+
]
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "autocfg"
|
43
|
+
version = "1.0.0"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "backtrace"
|
48
|
+
version = "0.3.46"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
dependencies = [
|
51
|
+
"backtrace-sys 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
52
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
53
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
54
|
+
"rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
55
|
+
]
|
56
|
+
|
57
|
+
[[package]]
|
58
|
+
name = "backtrace-sys"
|
59
|
+
version = "0.1.37"
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
61
|
+
dependencies = [
|
62
|
+
"cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)",
|
63
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
64
|
+
]
|
65
|
+
|
66
|
+
[[package]]
|
67
|
+
name = "base64"
|
68
|
+
version = "0.11.0"
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
70
|
+
|
71
|
+
[[package]]
|
72
|
+
name = "base64"
|
73
|
+
version = "0.12.0"
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "bincode"
|
78
|
+
version = "1.2.1"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
dependencies = [
|
81
|
+
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
82
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
83
|
+
]
|
84
|
+
|
85
|
+
[[package]]
|
86
|
+
name = "bitflags"
|
87
|
+
version = "1.2.1"
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
89
|
+
|
90
|
+
[[package]]
|
91
|
+
name = "blake2b_simd"
|
92
|
+
version = "0.5.10"
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
+
dependencies = [
|
95
|
+
"arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
96
|
+
"arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
97
|
+
"constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
98
|
+
]
|
99
|
+
|
100
|
+
[[package]]
|
101
|
+
name = "block-buffer"
|
102
|
+
version = "0.7.3"
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
104
|
+
dependencies = [
|
105
|
+
"block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
106
|
+
"byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
107
|
+
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
108
|
+
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
109
|
+
]
|
110
|
+
|
111
|
+
[[package]]
|
112
|
+
name = "block-padding"
|
113
|
+
version = "0.1.5"
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
|
+
dependencies = [
|
116
|
+
"byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
117
|
+
]
|
118
|
+
|
119
|
+
[[package]]
|
120
|
+
name = "byte-tools"
|
121
|
+
version = "0.3.1"
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
+
|
124
|
+
[[package]]
|
125
|
+
name = "byteorder"
|
126
|
+
version = "1.3.4"
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
+
|
129
|
+
[[package]]
|
130
|
+
name = "cc"
|
131
|
+
version = "1.0.52"
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
+
dependencies = [
|
134
|
+
"jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
|
135
|
+
]
|
136
|
+
|
137
|
+
[[package]]
|
138
|
+
name = "cfg-if"
|
139
|
+
version = "0.1.10"
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
+
|
142
|
+
[[package]]
|
143
|
+
name = "constant_time_eq"
|
144
|
+
version = "0.1.5"
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
+
|
147
|
+
[[package]]
|
148
|
+
name = "cranelift-bforest"
|
149
|
+
version = "0.63.0"
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
+
dependencies = [
|
152
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
153
|
+
]
|
154
|
+
|
155
|
+
[[package]]
|
156
|
+
name = "cranelift-codegen"
|
157
|
+
version = "0.63.0"
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
159
|
+
dependencies = [
|
160
|
+
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
161
|
+
"cranelift-bforest 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
162
|
+
"cranelift-codegen-meta 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
163
|
+
"cranelift-codegen-shared 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
164
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
165
|
+
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
166
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
167
|
+
"regalloc 0.0.21 (registry+https://github.com/rust-lang/crates.io-index)",
|
168
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
169
|
+
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
170
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
171
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
172
|
+
]
|
173
|
+
|
174
|
+
[[package]]
|
175
|
+
name = "cranelift-codegen-meta"
|
176
|
+
version = "0.63.0"
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
178
|
+
dependencies = [
|
179
|
+
"cranelift-codegen-shared 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
180
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
181
|
+
]
|
182
|
+
|
183
|
+
[[package]]
|
184
|
+
name = "cranelift-codegen-shared"
|
185
|
+
version = "0.63.0"
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
+
|
188
|
+
[[package]]
|
189
|
+
name = "cranelift-entity"
|
190
|
+
version = "0.63.0"
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
dependencies = [
|
193
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
194
|
+
]
|
195
|
+
|
196
|
+
[[package]]
|
197
|
+
name = "cranelift-frontend"
|
198
|
+
version = "0.63.0"
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
+
dependencies = [
|
201
|
+
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
202
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
203
|
+
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
204
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
205
|
+
]
|
206
|
+
|
207
|
+
[[package]]
|
208
|
+
name = "cranelift-native"
|
209
|
+
version = "0.63.0"
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
+
dependencies = [
|
212
|
+
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
213
|
+
"raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
214
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
215
|
+
]
|
216
|
+
|
217
|
+
[[package]]
|
218
|
+
name = "cranelift-wasm"
|
219
|
+
version = "0.63.0"
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
+
dependencies = [
|
222
|
+
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
223
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
224
|
+
"cranelift-frontend 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
225
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
226
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
227
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
228
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
229
|
+
]
|
230
|
+
|
231
|
+
[[package]]
|
232
|
+
name = "crc32fast"
|
233
|
+
version = "1.2.0"
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
+
dependencies = [
|
236
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
237
|
+
]
|
238
|
+
|
239
|
+
[[package]]
|
240
|
+
name = "crossbeam-deque"
|
241
|
+
version = "0.7.3"
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
243
|
+
dependencies = [
|
244
|
+
"crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
245
|
+
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
246
|
+
"maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
247
|
+
]
|
248
|
+
|
249
|
+
[[package]]
|
250
|
+
name = "crossbeam-epoch"
|
251
|
+
version = "0.8.2"
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
+
dependencies = [
|
254
|
+
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
255
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
256
|
+
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
257
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
258
|
+
"maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
259
|
+
"memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
260
|
+
"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
261
|
+
]
|
262
|
+
|
263
|
+
[[package]]
|
264
|
+
name = "crossbeam-queue"
|
265
|
+
version = "0.2.1"
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
267
|
+
dependencies = [
|
268
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
269
|
+
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
270
|
+
]
|
271
|
+
|
272
|
+
[[package]]
|
273
|
+
name = "crossbeam-utils"
|
274
|
+
version = "0.7.2"
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
|
+
dependencies = [
|
277
|
+
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
278
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
279
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "digest"
|
284
|
+
version = "0.8.1"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
dependencies = [
|
287
|
+
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
288
|
+
]
|
289
|
+
|
290
|
+
[[package]]
|
291
|
+
name = "directories"
|
292
|
+
version = "2.0.2"
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
+
dependencies = [
|
295
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
296
|
+
"dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
297
|
+
]
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "dirs-sys"
|
301
|
+
version = "0.3.4"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
dependencies = [
|
304
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
305
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
306
|
+
"redox_users 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
307
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
308
|
+
]
|
309
|
+
|
310
|
+
[[package]]
|
311
|
+
name = "either"
|
312
|
+
version = "1.5.3"
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
+
|
315
|
+
[[package]]
|
316
|
+
name = "env_logger"
|
317
|
+
version = "0.6.2"
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
319
|
+
dependencies = [
|
320
|
+
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
321
|
+
"humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
322
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
323
|
+
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
324
|
+
"termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
325
|
+
]
|
326
|
+
|
327
|
+
[[package]]
|
328
|
+
name = "errno"
|
329
|
+
version = "0.2.5"
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
+
dependencies = [
|
332
|
+
"errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
333
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
334
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
335
|
+
]
|
336
|
+
|
337
|
+
[[package]]
|
338
|
+
name = "errno-dragonfly"
|
339
|
+
version = "0.1.1"
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
+
dependencies = [
|
342
|
+
"gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
|
343
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
344
|
+
]
|
345
|
+
|
346
|
+
[[package]]
|
347
|
+
name = "faerie"
|
348
|
+
version = "0.15.0"
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
350
|
+
dependencies = [
|
351
|
+
"goblin 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
352
|
+
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
353
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
354
|
+
"scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
355
|
+
"string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
356
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
357
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
358
|
+
]
|
359
|
+
|
360
|
+
[[package]]
|
361
|
+
name = "fake-simd"
|
362
|
+
version = "0.1.2"
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
+
|
365
|
+
[[package]]
|
366
|
+
name = "fallible-iterator"
|
367
|
+
version = "0.2.0"
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
+
|
370
|
+
[[package]]
|
371
|
+
name = "file-per-thread-logger"
|
372
|
+
version = "0.1.2"
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
+
dependencies = [
|
375
|
+
"env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
376
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
377
|
+
]
|
378
|
+
|
379
|
+
[[package]]
|
380
|
+
name = "flate2"
|
381
|
+
version = "1.0.14"
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
+
dependencies = [
|
384
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
385
|
+
"crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
386
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
387
|
+
"miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
388
|
+
]
|
389
|
+
|
390
|
+
[[package]]
|
391
|
+
name = "gcc"
|
392
|
+
version = "0.3.55"
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
+
|
395
|
+
[[package]]
|
396
|
+
name = "generic-array"
|
397
|
+
version = "0.12.3"
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
399
|
+
dependencies = [
|
400
|
+
"typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
401
|
+
]
|
402
|
+
|
403
|
+
[[package]]
|
404
|
+
name = "getrandom"
|
405
|
+
version = "0.1.14"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
dependencies = [
|
408
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
409
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
410
|
+
"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
|
411
|
+
]
|
412
|
+
|
413
|
+
[[package]]
|
414
|
+
name = "gimli"
|
415
|
+
version = "0.20.0"
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
dependencies = [
|
418
|
+
"arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
419
|
+
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
420
|
+
"fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
421
|
+
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
422
|
+
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
423
|
+
"stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
424
|
+
]
|
425
|
+
|
426
|
+
[[package]]
|
427
|
+
name = "glob"
|
428
|
+
version = "0.3.0"
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
+
|
431
|
+
[[package]]
|
432
|
+
name = "goblin"
|
433
|
+
version = "0.1.3"
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
435
|
+
dependencies = [
|
436
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
437
|
+
"plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
438
|
+
"scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
439
|
+
]
|
440
|
+
|
441
|
+
[[package]]
|
442
|
+
name = "hermit-abi"
|
443
|
+
version = "0.1.12"
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
445
|
+
dependencies = [
|
446
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
447
|
+
]
|
448
|
+
|
449
|
+
[[package]]
|
450
|
+
name = "humantime"
|
451
|
+
version = "1.3.0"
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
453
|
+
dependencies = [
|
454
|
+
"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
455
|
+
]
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "indexmap"
|
459
|
+
version = "1.3.2"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
dependencies = [
|
462
|
+
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
463
|
+
]
|
464
|
+
|
465
|
+
[[package]]
|
466
|
+
name = "jobserver"
|
467
|
+
version = "0.1.21"
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
469
|
+
dependencies = [
|
470
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
471
|
+
]
|
472
|
+
|
473
|
+
[[package]]
|
474
|
+
name = "lazy_static"
|
475
|
+
version = "1.4.0"
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
+
|
478
|
+
[[package]]
|
479
|
+
name = "leb128"
|
480
|
+
version = "0.2.4"
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
+
|
483
|
+
[[package]]
|
484
|
+
name = "libc"
|
485
|
+
version = "0.2.69"
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "log"
|
490
|
+
version = "0.4.8"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
dependencies = [
|
493
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
494
|
+
]
|
495
|
+
|
496
|
+
[[package]]
|
497
|
+
name = "mach"
|
498
|
+
version = "0.2.3"
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
+
dependencies = [
|
501
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
502
|
+
]
|
503
|
+
|
504
|
+
[[package]]
|
505
|
+
name = "maybe-uninit"
|
506
|
+
version = "2.0.0"
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "memchr"
|
511
|
+
version = "2.3.3"
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+
|
514
|
+
[[package]]
|
515
|
+
name = "memoffset"
|
516
|
+
version = "0.5.4"
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
+
dependencies = [
|
519
|
+
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
520
|
+
]
|
521
|
+
|
522
|
+
[[package]]
|
523
|
+
name = "miniz_oxide"
|
524
|
+
version = "0.3.6"
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
+
dependencies = [
|
527
|
+
"adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
528
|
+
]
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "more-asserts"
|
532
|
+
version = "0.2.1"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
|
535
|
+
[[package]]
|
536
|
+
name = "num_cpus"
|
537
|
+
version = "1.13.0"
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
+
dependencies = [
|
540
|
+
"hermit-abi 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
541
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
542
|
+
]
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "object"
|
546
|
+
version = "0.18.0"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
dependencies = [
|
549
|
+
"flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
550
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
551
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
552
|
+
]
|
553
|
+
|
554
|
+
[[package]]
|
555
|
+
name = "opaque-debug"
|
556
|
+
version = "0.2.3"
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
|
+
|
559
|
+
[[package]]
|
560
|
+
name = "plain"
|
561
|
+
version = "0.2.3"
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
563
|
+
|
564
|
+
[[package]]
|
565
|
+
name = "proc-macro2"
|
566
|
+
version = "1.0.12"
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
568
|
+
dependencies = [
|
569
|
+
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
570
|
+
]
|
571
|
+
|
572
|
+
[[package]]
|
573
|
+
name = "quick-error"
|
574
|
+
version = "1.2.3"
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
+
|
577
|
+
[[package]]
|
578
|
+
name = "quote"
|
579
|
+
version = "1.0.4"
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
581
|
+
dependencies = [
|
582
|
+
"proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
583
|
+
]
|
584
|
+
|
585
|
+
[[package]]
|
586
|
+
name = "raw-cpuid"
|
587
|
+
version = "7.0.3"
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+
dependencies = [
|
590
|
+
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
591
|
+
"cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)",
|
592
|
+
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
593
|
+
]
|
594
|
+
|
595
|
+
[[package]]
|
596
|
+
name = "rayon"
|
597
|
+
version = "1.3.0"
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+
dependencies = [
|
600
|
+
"crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
601
|
+
"either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
602
|
+
"rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "rayon-core"
|
607
|
+
version = "1.7.0"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
dependencies = [
|
610
|
+
"crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
611
|
+
"crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
612
|
+
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
613
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
614
|
+
"num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
615
|
+
]
|
616
|
+
|
617
|
+
[[package]]
|
618
|
+
name = "redox_syscall"
|
619
|
+
version = "0.1.56"
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
+
|
622
|
+
[[package]]
|
623
|
+
name = "redox_users"
|
624
|
+
version = "0.3.4"
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
+
dependencies = [
|
627
|
+
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
628
|
+
"redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
|
629
|
+
"rust-argon2 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
630
|
+
]
|
631
|
+
|
632
|
+
[[package]]
|
633
|
+
name = "regalloc"
|
634
|
+
version = "0.0.21"
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
+
dependencies = [
|
637
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
638
|
+
"rustc-hash 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
639
|
+
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
640
|
+
]
|
641
|
+
|
642
|
+
[[package]]
|
643
|
+
name = "regex"
|
644
|
+
version = "1.3.7"
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
+
dependencies = [
|
647
|
+
"aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
648
|
+
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
649
|
+
"regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
650
|
+
"thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
651
|
+
]
|
652
|
+
|
653
|
+
[[package]]
|
654
|
+
name = "regex-syntax"
|
655
|
+
version = "0.6.17"
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
+
|
658
|
+
[[package]]
|
659
|
+
name = "region"
|
660
|
+
version = "2.1.2"
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
+
dependencies = [
|
663
|
+
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
664
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
665
|
+
"mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
666
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
667
|
+
]
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "rust-argon2"
|
671
|
+
version = "0.7.0"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
dependencies = [
|
674
|
+
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
675
|
+
"blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
676
|
+
"constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
677
|
+
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
678
|
+
]
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "rustc-demangle"
|
682
|
+
version = "0.1.16"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
|
685
|
+
[[package]]
|
686
|
+
name = "rustc-hash"
|
687
|
+
version = "1.1.0"
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
+
|
690
|
+
[[package]]
|
691
|
+
name = "rustc_version"
|
692
|
+
version = "0.2.3"
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
+
dependencies = [
|
695
|
+
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
696
|
+
]
|
697
|
+
|
698
|
+
[[package]]
|
699
|
+
name = "rutie"
|
700
|
+
version = "0.7.0"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
dependencies = [
|
703
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
704
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
705
|
+
]
|
706
|
+
|
707
|
+
[[package]]
|
708
|
+
name = "scopeguard"
|
709
|
+
version = "1.1.0"
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "scroll"
|
714
|
+
version = "0.10.1"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
dependencies = [
|
717
|
+
"scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
718
|
+
]
|
719
|
+
|
720
|
+
[[package]]
|
721
|
+
name = "scroll_derive"
|
722
|
+
version = "0.10.1"
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
+
dependencies = [
|
725
|
+
"proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
726
|
+
"quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
727
|
+
"syn 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
|
728
|
+
]
|
729
|
+
|
730
|
+
[[package]]
|
731
|
+
name = "semver"
|
732
|
+
version = "0.9.0"
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
734
|
+
dependencies = [
|
735
|
+
"semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
736
|
+
]
|
737
|
+
|
738
|
+
[[package]]
|
739
|
+
name = "semver-parser"
|
740
|
+
version = "0.7.0"
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
+
|
743
|
+
[[package]]
|
744
|
+
name = "serde"
|
745
|
+
version = "1.0.106"
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
+
dependencies = [
|
748
|
+
"serde_derive 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
749
|
+
]
|
750
|
+
|
751
|
+
[[package]]
|
752
|
+
name = "serde_derive"
|
753
|
+
version = "1.0.106"
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
755
|
+
dependencies = [
|
756
|
+
"proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
757
|
+
"quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
758
|
+
"syn 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "sha2"
|
763
|
+
version = "0.8.1"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
dependencies = [
|
766
|
+
"block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
767
|
+
"digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
768
|
+
"fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
769
|
+
"opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
770
|
+
]
|
771
|
+
|
772
|
+
[[package]]
|
773
|
+
name = "smallvec"
|
774
|
+
version = "1.4.0"
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
+
|
777
|
+
[[package]]
|
778
|
+
name = "stable_deref_trait"
|
779
|
+
version = "1.1.1"
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
781
|
+
|
782
|
+
[[package]]
|
783
|
+
name = "string-interner"
|
784
|
+
version = "0.7.1"
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
+
dependencies = [
|
787
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
788
|
+
]
|
789
|
+
|
790
|
+
[[package]]
|
791
|
+
name = "syn"
|
792
|
+
version = "1.0.18"
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
794
|
+
dependencies = [
|
795
|
+
"proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
796
|
+
"quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
797
|
+
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
798
|
+
]
|
799
|
+
|
800
|
+
[[package]]
|
801
|
+
name = "target-lexicon"
|
802
|
+
version = "0.10.0"
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
804
|
+
|
805
|
+
[[package]]
|
806
|
+
name = "termcolor"
|
807
|
+
version = "1.1.0"
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
+
dependencies = [
|
810
|
+
"winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
811
|
+
]
|
812
|
+
|
813
|
+
[[package]]
|
814
|
+
name = "thiserror"
|
815
|
+
version = "1.0.16"
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
+
dependencies = [
|
818
|
+
"thiserror-impl 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
819
|
+
]
|
820
|
+
|
821
|
+
[[package]]
|
822
|
+
name = "thiserror-impl"
|
823
|
+
version = "1.0.16"
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
+
dependencies = [
|
826
|
+
"proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
827
|
+
"quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
828
|
+
"syn 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
|
829
|
+
]
|
830
|
+
|
831
|
+
[[package]]
|
832
|
+
name = "thread_local"
|
833
|
+
version = "1.0.1"
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
+
dependencies = [
|
836
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
837
|
+
]
|
838
|
+
|
839
|
+
[[package]]
|
840
|
+
name = "toml"
|
841
|
+
version = "0.5.6"
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
+
dependencies = [
|
844
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
845
|
+
]
|
846
|
+
|
847
|
+
[[package]]
|
848
|
+
name = "typenum"
|
849
|
+
version = "1.12.0"
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
851
|
+
|
852
|
+
[[package]]
|
853
|
+
name = "unicode-xid"
|
854
|
+
version = "0.2.0"
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
+
|
857
|
+
[[package]]
|
858
|
+
name = "wasi"
|
859
|
+
version = "0.9.0+wasi-snapshot-preview1"
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
+
|
862
|
+
[[package]]
|
863
|
+
name = "wasmparser"
|
864
|
+
version = "0.51.4"
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
866
|
+
|
867
|
+
[[package]]
|
868
|
+
name = "wasmtime"
|
869
|
+
version = "0.16.0"
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
871
|
+
dependencies = [
|
872
|
+
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
873
|
+
"backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)",
|
874
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
875
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
876
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
877
|
+
"region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
878
|
+
"rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
879
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
880
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
881
|
+
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
882
|
+
"wasmtime-jit 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
883
|
+
"wasmtime-profiling 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
884
|
+
"wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
885
|
+
"wat 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
886
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
887
|
+
]
|
888
|
+
|
889
|
+
[[package]]
|
890
|
+
name = "wasmtime-debug"
|
891
|
+
version = "0.16.0"
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
893
|
+
dependencies = [
|
894
|
+
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
895
|
+
"faerie 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
896
|
+
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
897
|
+
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
898
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
899
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
900
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
901
|
+
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
902
|
+
]
|
903
|
+
|
904
|
+
[[package]]
|
905
|
+
name = "wasmtime-environ"
|
906
|
+
version = "0.16.0"
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
+
dependencies = [
|
909
|
+
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
910
|
+
"base64 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
911
|
+
"bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
912
|
+
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
913
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
914
|
+
"cranelift-wasm 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
915
|
+
"directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
916
|
+
"errno 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
917
|
+
"file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
918
|
+
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
919
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
920
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
921
|
+
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
922
|
+
"rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
923
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
924
|
+
"sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
925
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
926
|
+
"toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
927
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
928
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
929
|
+
"zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
930
|
+
]
|
931
|
+
|
932
|
+
[[package]]
|
933
|
+
name = "wasmtime-jit"
|
934
|
+
version = "0.16.0"
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
+
dependencies = [
|
937
|
+
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
938
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
939
|
+
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
940
|
+
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
941
|
+
"cranelift-frontend 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
942
|
+
"cranelift-native 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
943
|
+
"cranelift-wasm 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
944
|
+
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
945
|
+
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
946
|
+
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
947
|
+
"region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
948
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
949
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
950
|
+
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
951
|
+
"wasmtime-debug 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
952
|
+
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
953
|
+
"wasmtime-profiling 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
954
|
+
"wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
955
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
956
|
+
]
|
957
|
+
|
958
|
+
[[package]]
|
959
|
+
name = "wasmtime-profiling"
|
960
|
+
version = "0.16.0"
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
+
dependencies = [
|
963
|
+
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
964
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
965
|
+
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
966
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
967
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
968
|
+
"object 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
969
|
+
"scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
970
|
+
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
971
|
+
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
972
|
+
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
973
|
+
"wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
974
|
+
]
|
975
|
+
|
976
|
+
[[package]]
|
977
|
+
name = "wasmtime-ruby"
|
978
|
+
version = "0.1.0"
|
979
|
+
dependencies = [
|
980
|
+
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
981
|
+
"rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
982
|
+
"wasmtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
983
|
+
]
|
984
|
+
|
985
|
+
[[package]]
|
986
|
+
name = "wasmtime-runtime"
|
987
|
+
version = "0.16.0"
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
989
|
+
dependencies = [
|
990
|
+
"backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)",
|
991
|
+
"cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)",
|
992
|
+
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
993
|
+
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
994
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
995
|
+
"memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
996
|
+
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
997
|
+
"region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
998
|
+
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
999
|
+
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1000
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
1001
|
+
]
|
1002
|
+
|
1003
|
+
[[package]]
|
1004
|
+
name = "wast"
|
1005
|
+
version = "14.0.0"
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007
|
+
dependencies = [
|
1008
|
+
"leb128 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
1009
|
+
]
|
1010
|
+
|
1011
|
+
[[package]]
|
1012
|
+
name = "wat"
|
1013
|
+
version = "1.0.15"
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
+
dependencies = [
|
1016
|
+
"wast 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1017
|
+
]
|
1018
|
+
|
1019
|
+
[[package]]
|
1020
|
+
name = "winapi"
|
1021
|
+
version = "0.3.8"
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1023
|
+
dependencies = [
|
1024
|
+
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1025
|
+
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1026
|
+
]
|
1027
|
+
|
1028
|
+
[[package]]
|
1029
|
+
name = "winapi-i686-pc-windows-gnu"
|
1030
|
+
version = "0.4.0"
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1032
|
+
|
1033
|
+
[[package]]
|
1034
|
+
name = "winapi-util"
|
1035
|
+
version = "0.1.5"
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
+
dependencies = [
|
1038
|
+
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
1039
|
+
]
|
1040
|
+
|
1041
|
+
[[package]]
|
1042
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
1043
|
+
version = "0.4.0"
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
+
|
1046
|
+
[[package]]
|
1047
|
+
name = "zstd"
|
1048
|
+
version = "0.5.1+zstd.1.4.4"
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1050
|
+
dependencies = [
|
1051
|
+
"zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
1052
|
+
]
|
1053
|
+
|
1054
|
+
[[package]]
|
1055
|
+
name = "zstd-safe"
|
1056
|
+
version = "2.0.3+zstd.1.4.4"
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
+
dependencies = [
|
1059
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
1060
|
+
"zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
1061
|
+
]
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "zstd-sys"
|
1065
|
+
version = "1.4.15+zstd.1.4.4"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
dependencies = [
|
1068
|
+
"cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)",
|
1069
|
+
"glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1070
|
+
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
1071
|
+
]
|
1072
|
+
|
1073
|
+
[metadata]
|
1074
|
+
"checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
|
1075
|
+
"checksum aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
|
1076
|
+
"checksum anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)" = "d9a60d744a80c30fcb657dfe2c1b22bcb3e814c1a1e3674f32bf5820b570fbff"
|
1077
|
+
"checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
1078
|
+
"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
1079
|
+
"checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
1080
|
+
"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
|
1081
|
+
"checksum backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)" = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
|
1082
|
+
"checksum backtrace-sys 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "18fbebbe1c9d1f383a9cc7e8ccdb471b91c8d024ee9c2ca5b5346121fe8b4399"
|
1083
|
+
"checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
|
1084
|
+
"checksum base64 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5ca2cd0adc3f48f9e9ea5a6bbdf9ccc0bfade884847e484d452414c7ccffb3"
|
1085
|
+
"checksum bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
|
1086
|
+
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
1087
|
+
"checksum blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
|
1088
|
+
"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
|
1089
|
+
"checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
|
1090
|
+
"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
|
1091
|
+
"checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
|
1092
|
+
"checksum cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c3d87b23d6a92cd03af510a5ade527033f6aa6fa92161e2d5863a907d4c5e31d"
|
1093
|
+
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
1094
|
+
"checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
1095
|
+
"checksum cranelift-bforest 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4425bb6c3f3d2f581c650f1a1fdd3196a975490149cf59bea9d34c3bea79eda"
|
1096
|
+
"checksum cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d166b289fd30062ee6de86284750fc3fe5d037c6b864b3326ce153239b0626e1"
|
1097
|
+
"checksum cranelift-codegen-meta 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02c9fb2306a36d41c5facd4bf3400bc6c157185c43a96eaaa503471c34c5144b"
|
1098
|
+
"checksum cranelift-codegen-shared 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44e0cfe9b1f97d9f836bca551618106c7d53b93b579029ecd38e73daa7eb689e"
|
1099
|
+
"checksum cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "926a73c432e5ba9c891171ff50b75e7d992cd76cd271f0a0a0ba199138077472"
|
1100
|
+
"checksum cranelift-frontend 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e45f82e3446dd1ebb8c2c2f6a6b0e6cd6cd52965c7e5f7b1b35e9a9ace31ccde"
|
1101
|
+
"checksum cranelift-native 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "488b5d481bb0996a143e55a9d1739ef425efa20d4a5e5e98c859a8573c9ead9a"
|
1102
|
+
"checksum cranelift-wasm 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00aa8dde71fd9fdb1958e7b0ef8f524c1560e2c6165e4ea54bc302b40551c161"
|
1103
|
+
"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
|
1104
|
+
"checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
|
1105
|
+
"checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
|
1106
|
+
"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
|
1107
|
+
"checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
|
1108
|
+
"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
|
1109
|
+
"checksum directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
|
1110
|
+
"checksum dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
|
1111
|
+
"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
|
1112
|
+
"checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
|
1113
|
+
"checksum errno 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b480f641ccf0faf324e20c1d3e53d81b7484c698b42ea677f6907ae4db195371"
|
1114
|
+
"checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
|
1115
|
+
"checksum faerie 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfef65b0e94693295c5d2fe2506f0ee6f43465342d4b5331659936aee8b16084"
|
1116
|
+
"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
1117
|
+
"checksum fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
1118
|
+
"checksum file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8505b75b31ef7285168dd237c4a7db3c1f3e0927e7d314e670bc98e854272fe9"
|
1119
|
+
"checksum flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"
|
1120
|
+
"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
|
1121
|
+
"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
|
1122
|
+
"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
|
1123
|
+
"checksum gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81dd6190aad0f05ddbbf3245c54ed14ca4aa6dd32f22312b70d8f168c3e3e633"
|
1124
|
+
"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
1125
|
+
"checksum goblin 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3081214398d39e4bd7f2c1975f0488ed04614ffdd976c6fc7a0708278552c0da"
|
1126
|
+
"checksum hermit-abi 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "61565ff7aaace3525556587bd2dc31d4a07071957be715e63ce7b1eccf51a8f4"
|
1127
|
+
"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
1128
|
+
"checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
|
1129
|
+
"checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
|
1130
|
+
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
1131
|
+
"checksum leb128 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3576a87f2ba00f6f106fdfcd16db1d698d648a26ad8e0573cad8537c3c362d2a"
|
1132
|
+
"checksum libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)" = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
|
1133
|
+
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
|
1134
|
+
"checksum mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1"
|
1135
|
+
"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
1136
|
+
"checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
|
1137
|
+
"checksum memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
|
1138
|
+
"checksum miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5"
|
1139
|
+
"checksum more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"
|
1140
|
+
"checksum num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
1141
|
+
"checksum object 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5666bbb90bc4d1e5bdcb26c0afda1822d25928341e9384ab187a9b37ab69e36"
|
1142
|
+
"checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
|
1143
|
+
"checksum plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
1144
|
+
"checksum proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "8872cf6f48eee44265156c111456a700ab3483686b3f96df4cf5481c89157319"
|
1145
|
+
"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
1146
|
+
"checksum quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4c1f4b0efa5fc5e8ceb705136bfee52cfdb6a4e3509f770b478cd6ed434232a7"
|
1147
|
+
"checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf"
|
1148
|
+
"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
|
1149
|
+
"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
|
1150
|
+
"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
|
1151
|
+
"checksum redox_users 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
|
1152
|
+
"checksum regalloc 0.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "b27b256b41986ac5141b37b8bbba85d314fbf546c182eb255af6720e07e4f804"
|
1153
|
+
"checksum regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a6020f034922e3194c711b82a627453881bc4682166cabb07134a10c26ba7692"
|
1154
|
+
"checksum regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
|
1155
|
+
"checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856"
|
1156
|
+
"checksum rust-argon2 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
|
1157
|
+
"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
|
1158
|
+
"checksum rustc-hash 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1159
|
+
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
1160
|
+
"checksum rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "99a4174504679e66c524ffd839767eeca900d8c2e332ecf8bc6b9f15a5b8e5b1"
|
1161
|
+
"checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1162
|
+
"checksum scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "abb2332cb595d33f7edd5700f4cbf94892e680c7f0ae56adab58a35190b66cb1"
|
1163
|
+
"checksum scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8584eea9b9ff42825b46faf46a8c24d2cff13ec152fa2a50df788b87c07ee28"
|
1164
|
+
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
1165
|
+
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
1166
|
+
"checksum serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)" = "36df6ac6412072f67cf767ebbde4133a5b2e88e76dc6187fa7104cd16f783399"
|
1167
|
+
"checksum serde_derive 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)" = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"
|
1168
|
+
"checksum sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0"
|
1169
|
+
"checksum smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
|
1170
|
+
"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
|
1171
|
+
"checksum string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd710eadff449a1531351b0e43eb81ea404336fa2f56c777427ab0e32a4cf183"
|
1172
|
+
"checksum syn 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "410a7488c0a728c7ceb4ad59b9567eb4053d02e8cc7f5c0e0eeeb39518369213"
|
1173
|
+
"checksum target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab0e7238dcc7b40a7be719a25365910f6807bd864f4cce6b2e6b873658e2b19d"
|
1174
|
+
"checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
|
1175
|
+
"checksum thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "d12a1dae4add0f0d568eebc7bf142f145ba1aa2544cafb195c76f0f409091b60"
|
1176
|
+
"checksum thiserror-impl 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "3f34e0c1caaa462fd840ec6b768946ea1e7842620d94fe29d5b847138f521269"
|
1177
|
+
"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
|
1178
|
+
"checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
|
1179
|
+
"checksum typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
|
1180
|
+
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
|
1181
|
+
"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
1182
|
+
"checksum wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)" = "aeb1956b19469d1c5e63e459d29e7b5aa0f558d9f16fcef09736f8a265e6c10a"
|
1183
|
+
"checksum wasmtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b98eb07c950a0e192d7eccca1aae502c2ec6eb46e65d785e49cc2878e9962aa1"
|
1184
|
+
"checksum wasmtime-debug 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d39ba645aee700b29ff0093028b4123556dd142a74973f04ed6225eedb40e77d"
|
1185
|
+
"checksum wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed54fd9d64dfeeee7c285fd126174a6b5e6d4efc7e5a1566fdb635e60ff6a74e"
|
1186
|
+
"checksum wasmtime-jit 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8da8f32b1cc4c133612ff78e413213e24facb52f07748fc9f3c457b20918fa1d"
|
1187
|
+
"checksum wasmtime-profiling 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b0b0c85eda9345e1dc260c7e3e532dd3544dc0e885b0d35aab7ceb95664fd4d"
|
1188
|
+
"checksum wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "460b71a4366e26e2d95ecb972d8375d5a8a0c6f0394752d2906c0d37516e0d27"
|
1189
|
+
"checksum wast 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47b11c94c63d5365a76ea287f8e6e5b6050233fae4b2423aea2a1e126a385e17"
|
1190
|
+
"checksum wat 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)" = "03db18bc33cff3859c296efbefdcc00763a644539feeadca3415a1cee8a2835d"
|
1191
|
+
"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
|
1192
|
+
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1193
|
+
"checksum winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
1194
|
+
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1195
|
+
"checksum zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5d978b793ae64375b80baf652919b148f6a496ac8802922d9999f5a553194f"
|
1196
|
+
"checksum zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bee25eac9753cfedd48133fa1736cbd23b774e253d89badbeac7d12b23848d3f"
|
1197
|
+
"checksum zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "89719b034dc22d240d5b407fb0a3fe6d29952c181cff9a9f95c0bd40b4f8f7d8"
|