Cargo.lock 149.7 KB
Newer Older
1 2
[[package]]
name = "aho-corasick"
A
Alex Crichton 已提交
3
version = "0.6.7"
4 5
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
6
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
7 8
]

9 10 11 12
[[package]]
name = "alloc"
version = "0.0.0"
dependencies = [
13
 "compiler_builtins 0.0.0",
14
 "core 0.0.0",
15
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
16 17
]

S
steveklabnik 已提交
18 19 20 21 22
[[package]]
name = "ammonia"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
23
 "html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
24
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
25
 "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
26
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
27
 "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
28
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
29 30
]

31 32
[[package]]
name = "ansi_term"
A
Aleksey Kladov 已提交
33
version = "0.11.0"
34
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Aleksey Kladov 已提交
35
dependencies = [
36
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
37
]
38

39 40 41
[[package]]
name = "arena"
version = "0.0.0"
J
John Kåre Alsaker 已提交
42 43 44
dependencies = [
 "rustc_data_structures 0.0.0",
]
45

N
Nick Cameron 已提交
46 47 48 49 50 51 52 53
[[package]]
name = "arrayvec"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
54 55
[[package]]
name = "assert_cli"
A
Alex Crichton 已提交
56
version = "0.6.2"
N
Nick Cameron 已提交
57 58 59
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
60
 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
61
 "environment 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
62
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
63
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
64
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
65 66
]

67 68
[[package]]
name = "atty"
R
Ralf Jung 已提交
69
version = "0.2.11"
70 71
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
72
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
73
 "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
74
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
75 76
]

77 78
[[package]]
name = "backtrace"
A
Alex Crichton 已提交
79
version = "0.3.9"
80 81
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
82
 "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
83
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
84
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
85
 "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
86
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
87 88 89 90
]

[[package]]
name = "backtrace-sys"
91
version = "0.1.24"
92 93
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
94
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
95
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
96 97
]

A
Alex Crichton 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110
[[package]]
name = "bit-set"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

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

M
Marc-Antoine Perennou 已提交
111 112 113 114 115
[[package]]
name = "bitflags"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

116 117
[[package]]
name = "bitflags"
A
Alex Crichton 已提交
118
version = "1.0.4"
119 120
source = "registry+https://github.com/rust-lang/crates.io-index"

121 122 123 124 125
[[package]]
name = "bootstrap"
version = "0.0.0"
dependencies = [
 "build_helper 0.1.0",
126
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
127
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
B
Bastien Orivel 已提交
128
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
129
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
130
 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
131
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
132
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
133
 "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
134
 "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
135
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
136
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
137
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
138
 "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
139
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
140 141
]

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

147 148 149 150
[[package]]
name = "build-manifest"
version = "0.1.0"
dependencies = [
A
Alex Crichton 已提交
151
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
152
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
153
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
154 155 156 157 158 159
]

[[package]]
name = "build_helper"
version = "0.1.0"

160 161
[[package]]
name = "bytecount"
N
Nick Cameron 已提交
162
version = "0.4.0"
163 164
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
165
 "packed_simd 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
166 167
]

168 169
[[package]]
name = "byteorder"
A
Alex Crichton 已提交
170
version = "1.2.3"
171 172
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
173 174 175 176 177
[[package]]
name = "bytesize"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

178 179
[[package]]
name = "cargo"
A
Alex Crichton 已提交
180
version = "0.33.0"
181
dependencies = [
R
Ralf Jung 已提交
182
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
183
 "bufstream 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
184
 "bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
185
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
186
 "core-foundation 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
187
 "crates-io 0.21.0",
A
Alex Crichton 已提交
188
 "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
189
 "crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
190 191
 "curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
192
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
193
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
194
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
195
 "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
196
 "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
197 198
 "fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
199
 "git2-curl 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
200
 "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
201
 "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
202 203
 "home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "ignore 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
204
 "im-rc 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
205
 "jobserver 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
206
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
207
 "lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
208
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
209 210
 "libgit2-sys 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
211
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
212
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
213
 "opener 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
214
 "openssl 0.10.13 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
215
 "pretty_env_logger 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
216
 "proptest 0.8.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
217 218
 "rustc-workspace-hack 1.0.0",
 "rustfix 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
219
 "same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
220
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
221
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
222
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
223
 "serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
224
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
225
 "shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
226
 "tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
227 228
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
229
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
230
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
231
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
232
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
233 234
]

R
Ralf Jung 已提交
235 236
[[package]]
name = "cargo_metadata"
237
version = "0.6.2"
R
Ralf Jung 已提交
238 239 240 241
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
242
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
243
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
244
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
245 246
]

A
Alex Crichton 已提交
247 248 249 250
[[package]]
name = "cargotest2"
version = "0.1.0"

N
Nick Cameron 已提交
251 252
[[package]]
name = "cc"
253
version = "1.0.25"
N
Nick Cameron 已提交
254 255
source = "registry+https://github.com/rust-lang/crates.io-index"

256 257
[[package]]
name = "cfg-if"
A
Alex Crichton 已提交
258
version = "0.1.5"
259 260
source = "registry+https://github.com/rust-lang/crates.io-index"

261 262
[[package]]
name = "chalk-engine"
263
version = "0.8.0"
264 265 266
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "chalk-macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
267
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
268 269 270 271 272 273 274 275 276 277
]

[[package]]
name = "chalk-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
278 279
[[package]]
name = "chrono"
A
Alex Crichton 已提交
280
version = "0.4.4"
A
Alex Crichton 已提交
281 282
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
283 284 285
 "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
286 287
]

288 289
[[package]]
name = "clap"
A
Alex Crichton 已提交
290
version = "2.32.0"
291 292
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Aleksey Kladov 已提交
293
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
294
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
295
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
296
 "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
297
 "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
298
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
299
 "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
300
 "yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
301 302
]

O
Oliver Schneider 已提交
303 304
[[package]]
name = "clippy"
O
Oliver Schneider 已提交
305
version = "0.0.212"
O
Oliver Schneider 已提交
306
dependencies = [
307
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
308
 "clippy-mini-macro-test 0.2.0",
M
Matthias Krüger 已提交
309
 "clippy_dev 0.0.1",
O
Oliver Schneider 已提交
310
 "clippy_lints 0.0.212",
O
Oliver Scherer 已提交
311
 "compiletest_rs 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)",
312
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
313 314
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
315
 "rustc-workspace-hack 1.0.0",
M
Matthias Krüger 已提交
316
 "rustc_tools_util 0.1.0",
317
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
318
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
319
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
320 321 322 323
]

[[package]]
name = "clippy-mini-macro-test"
324
version = "0.2.0"
O
Oliver Schneider 已提交
325

M
Matthias Krüger 已提交
326 327 328 329 330 331 332 333
[[package]]
name = "clippy_dev"
version = "0.0.1"
dependencies = [
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
334
 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matthias Krüger 已提交
335 336
]

O
Oliver Schneider 已提交
337 338
[[package]]
name = "clippy_lints"
O
Oliver Schneider 已提交
339
version = "0.0.212"
340
dependencies = [
341
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
342
 "if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
343
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
344 345
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
346
 "pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
347
 "quine-mc_cluskey 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
348
 "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
349
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
350
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
351
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
352
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
353
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
354
 "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
355
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
356 357
]

K
kennytm 已提交
358 359 360 361 362
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
363
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
364 365
]

366 367
[[package]]
name = "cmake"
A
Alex Crichton 已提交
368
version = "0.1.33"
369 370
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
371
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
372 373
]

N
Nick Cameron 已提交
374 375 376 377 378 379 380 381
[[package]]
name = "colored"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394
[[package]]
name = "commoncrypto"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "commoncrypto-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
395
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
396 397
]

398 399 400 401
[[package]]
name = "compiler_builtins"
version = "0.0.0"
dependencies = [
402
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
403 404 405
 "core 0.0.0",
]

406 407 408 409
[[package]]
name = "compiletest"
version = "0.0.0"
dependencies = [
O
Oliver Schneider 已提交
410
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
411
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
B
Bastien Orivel 已提交
412
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
413
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
414
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
415
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
416
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
417
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
418
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
419
 "rustfix 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
420
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
421
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
422
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
423
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
424 425
]

N
Nick Cameron 已提交
426
[[package]]
O
Oliver Schneider 已提交
427
name = "compiletest_rs"
O
Oliver Scherer 已提交
428
version = "0.3.17"
429 430
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
O
Oliver Schneider 已提交
431
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
432
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
433
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
434
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
435
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
436
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
437
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
438
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
439
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
440
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
441
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
442
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
443 444
]

445 446 447
[[package]]
name = "core"
version = "0.0.0"
A
Alex Crichton 已提交
448
dependencies = [
449
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
450
]
451

N
Nick Cameron 已提交
452 453
[[package]]
name = "core-foundation"
A
Alex Crichton 已提交
454
version = "0.6.1"
N
Nick Cameron 已提交
455 456
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
457
 "core-foundation-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
458
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
459 460 461 462
]

[[package]]
name = "core-foundation-sys"
A
Alex Crichton 已提交
463
version = "0.6.1"
N
Nick Cameron 已提交
464 465
source = "registry+https://github.com/rust-lang/crates.io-index"

466 467
[[package]]
name = "crates-io"
A
Alex Crichton 已提交
468
version = "0.21.0"
469
dependencies = [
A
Alex Crichton 已提交
470
 "curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
471
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
472
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
473
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
474
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
475
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
476 477
]

478 479
[[package]]
name = "crossbeam"
480
version = "0.3.2"
481 482
source = "registry+https://github.com/rust-lang/crates.io-index"

K
kennytm 已提交
483 484
[[package]]
name = "crossbeam-channel"
N
Nick Cameron 已提交
485
version = "0.2.6"
K
kennytm 已提交
486 487
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
488 489 490
 "crossbeam-epoch 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
491
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
492
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
493 494
]

N
Nick Cameron 已提交
495 496 497 498 499
[[package]]
name = "crossbeam-deque"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
500
 "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
501 502 503 504 505
 "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-epoch"
A
Alex Crichton 已提交
506
version = "0.3.1"
N
Nick Cameron 已提交
507 508 509
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
510
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
511
 "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
512
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
513 514 515 516 517
 "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

K
kennytm 已提交
518 519
[[package]]
name = "crossbeam-epoch"
N
Nick Cameron 已提交
520
version = "0.6.0"
K
kennytm 已提交
521 522 523
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
524
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
525
 "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
526
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
527 528 529 530
 "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
531 532 533 534 535
[[package]]
name = "crossbeam-utils"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
536
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
537 538
]

A
Alex Crichton 已提交
539 540 541 542 543
[[package]]
name = "crossbeam-utils"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
544 545 546 547 548 549 550 551
[[package]]
name = "crossbeam-utils"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
552 553
[[package]]
name = "crypto-hash"
A
Alex Crichton 已提交
554
version = "0.3.1"
O
Oliver Schneider 已提交
555 556 557
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
558
 "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
559 560
 "openssl 0.10.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
561 562
]

563 564
[[package]]
name = "curl"
A
Alex Crichton 已提交
565
version = "0.4.19"
566 567
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
568
 "curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)",
569
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
570
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
571
 "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
572 573 574
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
 "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
 "socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
575 576 577 578 579
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "curl-sys"
A
Alex Crichton 已提交
580
version = "0.4.15"
581 582
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
583
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
584
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
585
 "libnghttp2-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
586 587 588
 "libz-sys 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
589
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
590
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
591 592
]

D
Douglas Campos 已提交
593 594 595 596 597
[[package]]
name = "datafrog"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

598 599
[[package]]
name = "derive-new"
600
version = "0.5.6"
601 602
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
603 604 605
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
606 607
]

K
kennytm 已提交
608 609
[[package]]
name = "derive_more"
N
Nick Cameron 已提交
610
version = "0.13.0"
K
kennytm 已提交
611 612
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
613 614
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
615
 "rustc_version 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
616
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
617 618
]

619 620
[[package]]
name = "diff"
O
Oliver Schneider 已提交
621
version = "0.1.11"
622 623
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Mark Simulacrum 已提交
624 625 626 627 628
[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

R
Ralf Jung 已提交
629 630 631 632 633 634 635 636 637
[[package]]
name = "directories"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
638 639 640 641
[[package]]
name = "dlmalloc"
version = "0.0.0"
dependencies = [
642
 "compiler_builtins 0.0.0",
O
Oliver Schneider 已提交
643 644 645 646 647
 "core 0.0.0",
]

[[package]]
name = "either"
A
Alex Crichton 已提交
648
version = "1.5.0"
O
Oliver Schneider 已提交
649 650
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
651 652
[[package]]
name = "elasticlunr-rs"
653
version = "2.3.4"
S
steveklabnik 已提交
654 655
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
656 657 658
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
659
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
660
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
661 662
 "strum 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "strum_macros 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
663 664
]

665 666
[[package]]
name = "ena"
667
version = "0.9.3"
668 669
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
670
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
671 672
]

673 674
[[package]]
name = "ena"
N
Nicholas Nethercote 已提交
675
version = "0.11.0"
676 677 678 679 680
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
681 682
[[package]]
name = "env_logger"
A
Alex Crichton 已提交
683
version = "0.5.12"
A
Alex Crichton 已提交
684 685
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
R
Ralf Jung 已提交
686
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
687
 "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
688
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
689 690
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
691 692
]

A
Alex Crichton 已提交
693 694 695 696 697 698 699 700 701 702 703 704
[[package]]
name = "env_logger"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
705 706 707 708 709
[[package]]
name = "environment"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

710 711
[[package]]
name = "error-chain"
712
version = "0.11.0"
G
Guillaume Gomez 已提交
713 714
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
715
 "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
G
Guillaume Gomez 已提交
716 717
]

R
Ralf Jung 已提交
718 719 720 721 722 723 724 725
[[package]]
name = "error-chain"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
]

726 727 728
[[package]]
name = "error_index_generator"
version = "0.0.0"
M
Mark Simulacrum 已提交
729 730 731
dependencies = [
 "rustdoc 0.0.0",
]
732

A
Alex Crichton 已提交
733 734
[[package]]
name = "failure"
A
Alex Crichton 已提交
735
version = "0.1.2"
A
Alex Crichton 已提交
736 737
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
738
 "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
739
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
740 741 742 743
]

[[package]]
name = "failure_derive"
744
version = "0.1.3"
A
Alex Crichton 已提交
745 746
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
747
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
748
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
749 750
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
751 752
]

A
Alex Crichton 已提交
753 754
[[package]]
name = "filetime"
A
Alex Crichton 已提交
755
version = "0.2.1"
A
Alex Crichton 已提交
756 757
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
758
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
759
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
760
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
761 762
]

763 764 765 766 767
[[package]]
name = "fixedbitset"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"

F
Felix Schütt 已提交
768 769
[[package]]
name = "flate2"
770
version = "1.0.3"
F
Felix Schütt 已提交
771 772
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
773
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
774
 "libz-sys 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
F
Felix Schütt 已提交
775 776 777
 "miniz-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]

778 779 780 781
[[package]]
name = "fmt_macros"
version = "0.0.0"

782 783
[[package]]
name = "fnv"
O
Oliver Schneider 已提交
784
version = "1.0.6"
785 786
source = "registry+https://github.com/rust-lang/crates.io-index"

787 788
[[package]]
name = "foreign-types"
O
Oliver Schneider 已提交
789 790 791 792 793 794 795 796 797
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
798 799
source = "registry+https://github.com/rust-lang/crates.io-index"

800 801 802 803 804 805 806 807
[[package]]
name = "fortanix-sgx-abi"
version = "0.0.0"
dependencies = [
 "compiler_builtins 0.0.0",
 "core 0.0.0",
]

808 809
[[package]]
name = "fs2"
810
version = "0.4.3"
811 812
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
813
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
814
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
815 816
]

817 818 819 820 821
[[package]]
name = "fs_extra"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

822 823 824 825 826 827 828 829
[[package]]
name = "fst"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
830 831
[[package]]
name = "fuchsia-zircon"
832
version = "0.3.3"
O
Oliver Schneider 已提交
833 834
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
835
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
836
 "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
837 838 839 840
]

[[package]]
name = "fuchsia-zircon-sys"
841
version = "0.3.3"
O
Oliver Schneider 已提交
842 843
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
844 845
[[package]]
name = "futf"
A
Alex Crichton 已提交
846
version = "0.1.4"
S
steveklabnik 已提交
847 848 849
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
850
 "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
851 852
]

853 854
[[package]]
name = "futures"
A
Alex Crichton 已提交
855
version = "0.1.21"
856 857
source = "registry+https://github.com/rust-lang/crates.io-index"

E
Eric Huss 已提交
858 859 860 861 862
[[package]]
name = "fwdansi"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
863 864
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
865 866
]

867 868
[[package]]
name = "getopts"
A
Alex Crichton 已提交
869
version = "0.2.17"
870 871
source = "registry+https://github.com/rust-lang/crates.io-index"

872 873
[[package]]
name = "git2"
E
Eric Huss 已提交
874
version = "0.7.5"
875 876
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
877
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
878
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
879 880
 "libgit2-sys 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
881
 "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
882
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
883
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
884 885 886 887
]

[[package]]
name = "git2-curl"
888
version = "0.8.2"
889 890
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
891
 "curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
892
 "git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
893
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
894
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
895 896 897 898 899 900 901
]

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

902 903
[[package]]
name = "globset"
A
Alex Crichton 已提交
904
version = "0.4.1"
905 906
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
907
 "aho-corasick 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
908
 "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
909
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
910 911
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
912 913
]

914 915 916 917
[[package]]
name = "graphviz"
version = "0.0.0"

918 919
[[package]]
name = "handlebars"
A
Alex Crichton 已提交
920
version = "0.32.4"
921 922
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
923
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
924
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
925
 "pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
926
 "pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
927
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
928 929
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
930
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
931 932
]

933 934 935 936 937 938 939 940
[[package]]
name = "heck"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

941 942
[[package]]
name = "hex"
A
Alex Crichton 已提交
943
version = "0.3.2"
944 945
source = "registry+https://github.com/rust-lang/crates.io-index"

946 947
[[package]]
name = "home"
A
Alex Crichton 已提交
948
version = "0.3.3"
949 950
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Bastien Orivel 已提交
951
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
952
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
953 954
]

S
steveklabnik 已提交
955 956
[[package]]
name = "html5ever"
957
version = "0.22.5"
S
steveklabnik 已提交
958 959
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
960
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
961 962
 "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "markup5ever 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
963 964 965
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
966 967
]

A
Alex Crichton 已提交
968 969 970 971 972
[[package]]
name = "humantime"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
973
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
974 975
]

976 977
[[package]]
name = "idna"
A
Alex Crichton 已提交
978
version = "0.1.5"
979 980
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
981
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
982
 "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
983
 "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
984 985
]

O
Oliver Schneider 已提交
986 987
[[package]]
name = "if_chain"
M
Manish Goregaokar 已提交
988
version = "0.1.3"
O
Oliver Schneider 已提交
989 990
source = "registry+https://github.com/rust-lang/crates.io-index"

991 992
[[package]]
name = "ignore"
A
Alex Crichton 已提交
993
version = "0.4.3"
994 995
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
996
 "crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
997 998
 "globset 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
999
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1000 1001 1002 1003 1004
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
1005
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1006 1007
]

E
Eric Huss 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016
[[package]]
name = "im-rc"
version = "12.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "rustc_version 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1017 1018 1019 1020
[[package]]
name = "installer"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
1021
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tom Tromey 已提交
1022
 "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
1023
 "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1024
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1025
 "rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1026
 "tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1027
 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
1028
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1029
 "xz2 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1030 1031
]

S
steveklabnik 已提交
1032 1033 1034 1035 1036 1037 1038
[[package]]
name = "is-match"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "itertools"
A
Alex Crichton 已提交
1039
version = "0.7.8"
S
steveklabnik 已提交
1040 1041
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1042
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1043 1044
]

1045
[[package]]
A
Alex Crichton 已提交
1046
name = "itoa"
A
Alex Crichton 已提交
1047
version = "0.4.3"
1048 1049
source = "registry+https://github.com/rust-lang/crates.io-index"

1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
[[package]]
name = "jemalloc-sys"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
 "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
]

S
Steve Klabnik 已提交
1060
[[package]]
A
Alex Crichton 已提交
1061
name = "jobserver"
1062
version = "0.1.11"
S
Steve Klabnik 已提交
1063
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1064
dependencies = [
1065
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1066
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1067
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1068
]
S
Steve Klabnik 已提交
1069

1070 1071 1072 1073 1074
[[package]]
name = "json"
version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"

1075 1076
[[package]]
name = "jsonrpc-core"
I
Igor Matuszewski 已提交
1077
version = "8.0.1"
1078 1079
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1080
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
1081
 "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1082
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1083
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1084
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
1085 1086
]

1087 1088 1089 1090 1091 1092 1093 1094 1095
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

1096 1097
[[package]]
name = "languageserver-types"
N
Nick Cameron 已提交
1098
version = "0.51.1"
1099 1100
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1101
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
1102
 "num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1103
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1104
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1105
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1106
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1107
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1108 1109 1110
 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1111 1112
[[package]]
name = "lazy_static"
O
Oliver Schneider 已提交
1113 1114 1115
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1116 1117
[[package]]
name = "lazy_static"
A
Alex Crichton 已提交
1118
version = "1.1.0"
A
Alex Crichton 已提交
1119
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1120
dependencies = [
1121
 "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1122
]
A
Alex Crichton 已提交
1123

A
Alex Crichton 已提交
1124 1125
[[package]]
name = "lazycell"
A
Alex Crichton 已提交
1126
version = "1.2.0"
A
Alex Crichton 已提交
1127 1128
source = "registry+https://github.com/rust-lang/crates.io-index"

1129 1130 1131 1132
[[package]]
name = "libc"
version = "0.0.0"
dependencies = [
1133
 "compiler_builtins 0.0.0",
1134 1135 1136 1137 1138
 "core 0.0.0",
]

[[package]]
name = "libc"
1139
version = "0.2.43"
1140 1141
source = "registry+https://github.com/rust-lang/crates.io-index"

1142 1143
[[package]]
name = "libgit2-sys"
1144
version = "0.7.10"
1145 1146
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1147
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1148
 "curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)",
1149
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1150
 "libssh2-sys 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
1151 1152 1153
 "libz-sys 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
1154 1155
]

A
Alex Crichton 已提交
1156 1157 1158 1159 1160 1161 1162 1163
[[package]]
name = "libnghttp2-sys"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
]

1164 1165
[[package]]
name = "libssh2-sys"
1166
version = "0.2.11"
1167 1168
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1169
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
1170
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1171 1172 1173
 "libz-sys 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1174
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1175 1176 1177 1178
]

[[package]]
name = "libz-sys"
1179
version = "1.0.24"
1180 1181
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1182
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
1183
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1184
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1185
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1186 1187
]

1188 1189 1190 1191
[[package]]
name = "linkchecker"
version = "0.1.0"

M
Mark Rousskov 已提交
1192 1193 1194 1195 1196 1197 1198 1199 1200
[[package]]
name = "lock_api"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

1201 1202
[[package]]
name = "log"
1203 1204 1205
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1206
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
1207 1208 1209 1210
]

[[package]]
name = "log"
1211
version = "0.4.5"
1212
source = "registry+https://github.com/rust-lang/crates.io-index"
1213
dependencies = [
A
Alex Crichton 已提交
1214
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1215
]
1216

1217 1218
[[package]]
name = "log_settings"
A
Alex Crichton 已提交
1219
version = "0.1.2"
1220 1221
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1222
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1223 1224
]

1225 1226
[[package]]
name = "lzma-sys"
B
Bastien Orivel 已提交
1227
version = "0.1.10"
1228 1229
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1230
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
B
Bastien Orivel 已提交
1231
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
1232
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1233
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
1234 1235
]

S
steveklabnik 已提交
1236 1237 1238 1239 1240
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

G
Guillaume Gomez 已提交
1241 1242 1243 1244 1245
[[package]]
name = "macro-utils"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
[[package]]
name = "maplit"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "markup5ever"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1256 1257
 "phf 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "phf_codegen 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1258
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1259
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1260
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1261 1262
 "string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1263 1264 1265
 "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1266 1267
[[package]]
name = "matches"
A
Alex Crichton 已提交
1268
version = "0.1.8"
1269 1270
source = "registry+https://github.com/rust-lang/crates.io-index"

1271 1272
[[package]]
name = "mdbook"
M
Matt Ickstadt 已提交
1273
version = "0.1.7"
1274 1275
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
S
steveklabnik 已提交
1276
 "ammonia 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1277 1278
 "chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
1279
 "elasticlunr-rs 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1280
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1281
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1282
 "handlebars 0.32.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1283
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1284
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1285
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1286
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1287
 "open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
1288
 "pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1289
 "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1290
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1291
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1292
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1293
 "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1294
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1295
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1296
 "toml-query 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1297 1298
]

O
Oliver Schneider 已提交
1299 1300
[[package]]
name = "memchr"
A
Alex Crichton 已提交
1301
version = "2.0.2"
O
Oliver Schneider 已提交
1302 1303
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1304
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1305 1306
]

1307 1308 1309 1310 1311 1312
[[package]]
name = "memmap"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1313
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1314 1315
]

N
Nick Cameron 已提交
1316 1317 1318 1319 1320
[[package]]
name = "memoffset"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

G
Guillaume Gomez 已提交
1321 1322
[[package]]
name = "minifier"
G
Guillaume Gomez 已提交
1323
version = "0.0.20"
G
Guillaume Gomez 已提交
1324 1325
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
G
Guillaume Gomez 已提交
1326
 "macro-utils 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
G
Guillaume Gomez 已提交
1327 1328
]

1329 1330
[[package]]
name = "miniz-sys"
N
Nick Cameron 已提交
1331
version = "0.1.10"
1332 1333
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1334
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
1335
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1336 1337
]

A
Alex Crichton 已提交
1338 1339
[[package]]
name = "miow"
A
Alex Crichton 已提交
1340
version = "0.3.3"
A
Alex Crichton 已提交
1341 1342
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1343 1344
 "socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1345 1346
]

1347 1348 1349 1350
[[package]]
name = "miri"
version = "0.1.0"
dependencies = [
A
Alex Crichton 已提交
1351
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
1352
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1353
 "colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Scherer 已提交
1354
 "compiletest_rs 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1355
 "directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1356
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
1357
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1358
 "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
1359 1360
]

A
Alex Crichton 已提交
1361 1362 1363 1364 1365 1366 1367 1368
[[package]]
name = "new_debug_unreachable"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
1369 1370 1371 1372 1373
[[package]]
name = "nodrop"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"

1374
[[package]]
O
Oliver Schneider 已提交
1375
name = "num-derive"
1376
version = "0.2.3"
1377 1378
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1379
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1380
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1381
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
1382
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
1383 1384 1385
]

[[package]]
O
Oliver Schneider 已提交
1386 1387
name = "num-integer"
version = "0.1.39"
1388 1389
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1390
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
1391 1392
]

S
Steve Klabnik 已提交
1393 1394
[[package]]
name = "num-traits"
A
Alex Crichton 已提交
1395
version = "0.2.5"
S
Steve Klabnik 已提交
1396 1397
source = "registry+https://github.com/rust-lang/crates.io-index"

1398 1399
[[package]]
name = "num_cpus"
1400
version = "1.8.0"
1401 1402
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1403
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1404 1405
]

S
Steve Klabnik 已提交
1406 1407
[[package]]
name = "open"
A
Alex Crichton 已提交
1408
version = "1.2.1"
S
Steve Klabnik 已提交
1409 1410
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1411 1412 1413 1414 1415 1416
[[package]]
name = "opener"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1417
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
1418
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1419 1420
]

1421 1422
[[package]]
name = "openssl"
1423
version = "0.10.13"
1424 1425
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1426 1427
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1428
 "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1429
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1430
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1431
 "openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)",
1432 1433 1434 1435
]

[[package]]
name = "openssl-probe"
A
Alex Crichton 已提交
1436
version = "0.1.2"
1437 1438
source = "registry+https://github.com/rust-lang/crates.io-index"

E
Eric Huss 已提交
1439 1440
[[package]]
name = "openssl-src"
1441
version = "111.0.1+1.1.1"
E
Eric Huss 已提交
1442 1443
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1444
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1445 1446
]

1447 1448
[[package]]
name = "openssl-sys"
1449
version = "0.9.38"
1450 1451
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1452
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
1453
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1454 1455
 "openssl-src 111.0.1+1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1456
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1457 1458
]

1459 1460 1461 1462 1463
[[package]]
name = "ordermap"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

1464 1465 1466 1467 1468
[[package]]
name = "ordslice"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

1469 1470 1471 1472 1473
[[package]]
name = "owning_ref"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1474
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1475 1476
]

N
Nick Cameron 已提交
1477 1478 1479 1480 1481 1482 1483 1484
[[package]]
name = "packed_simd"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

1485 1486 1487 1488
[[package]]
name = "panic_abort"
version = "0.0.0"
dependencies = [
1489
 "compiler_builtins 0.0.0",
1490 1491 1492 1493 1494 1495 1496 1497 1498
 "core 0.0.0",
 "libc 0.0.0",
]

[[package]]
name = "panic_unwind"
version = "0.0.0"
dependencies = [
 "alloc 0.0.0",
1499
 "compiler_builtins 0.0.0",
1500 1501 1502 1503 1504
 "core 0.0.0",
 "libc 0.0.0",
 "unwind 0.0.0",
]

M
Mark Rousskov 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513
[[package]]
name = "parking_lot"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lock_api 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1514 1515
[[package]]
name = "parking_lot_core"
1516
version = "0.2.14"
1517 1518
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1519
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1520
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
1521
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1522
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1523 1524
]

M
Mark Rousskov 已提交
1525 1526 1527 1528 1529 1530
[[package]]
name = "parking_lot_core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1531
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
1532
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1533
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
1534 1535
]

1536 1537
[[package]]
name = "percent-encoding"
O
Oliver Schneider 已提交
1538
version = "1.0.1"
1539 1540
source = "registry+https://github.com/rust-lang/crates.io-index"

1541 1542
[[package]]
name = "pest"
A
Alex Crichton 已提交
1543
version = "1.0.6"
1544 1545
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1546 1547
[[package]]
name = "pest_derive"
1548
version = "1.0.8"
A
Alex Crichton 已提交
1549 1550 1551 1552 1553 1554 1555
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

1556 1557
[[package]]
name = "petgraph"
1558
version = "0.4.13"
1559 1560 1561 1562 1563 1564
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

S
steveklabnik 已提交
1565 1566
[[package]]
name = "phf"
A
Alex Crichton 已提交
1567
version = "0.7.22"
S
steveklabnik 已提交
1568 1569
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1570
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1571 1572 1573 1574
]

[[package]]
name = "phf_codegen"
A
Alex Crichton 已提交
1575
version = "0.7.22"
S
steveklabnik 已提交
1576 1577
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1578 1579
 "phf_generator 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1580 1581 1582 1583
]

[[package]]
name = "phf_generator"
A
Alex Crichton 已提交
1584
version = "0.7.22"
S
steveklabnik 已提交
1585 1586
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1587
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1588
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1589 1590 1591 1592
]

[[package]]
name = "phf_shared"
A
Alex Crichton 已提交
1593
version = "0.7.22"
S
steveklabnik 已提交
1594 1595 1596 1597 1598
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

1599 1600
[[package]]
name = "pkg-config"
1601
version = "0.3.14"
1602 1603
source = "registry+https://github.com/rust-lang/crates.io-index"

1604 1605
[[package]]
name = "polonius-engine"
1606
version = "0.5.0"
1607
source = "registry+https://github.com/rust-lang/crates.io-index"
D
Douglas Campos 已提交
1608 1609
dependencies = [
 "datafrog 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1610
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
1611
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
D
Douglas Campos 已提交
1612
]
1613

S
steveklabnik 已提交
1614 1615 1616 1617 1618
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Mark Simulacrum 已提交
1619 1620 1621 1622 1623 1624 1625 1626 1627
[[package]]
name = "pretty_assertions"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

E
Eric Huss 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
[[package]]
name = "pretty_env_logger"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
1639 1640
[[package]]
name = "proc-macro2"
A
Alex Crichton 已提交
1641 1642 1643 1644 1645 1646 1647 1648
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "proc-macro2"
N
Nick Cameron 已提交
1649
version = "0.4.24"
A
Alex Crichton 已提交
1650 1651 1652 1653 1654
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1655 1656 1657 1658
[[package]]
name = "proc_macro"
version = "0.0.0"

1659 1660 1661 1662
[[package]]
name = "profiler_builtins"
version = "0.0.0"
dependencies = [
1663
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
1664
 "compiler_builtins 0.0.0",
1665
 "core 0.0.0",
1666 1667
]

A
Alex Crichton 已提交
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
[[package]]
name = "proptest"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "rusty-fork 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
1685 1686
[[package]]
name = "pulldown-cmark"
M
Manish Goregaokar 已提交
1687
version = "0.1.2"
O
Oliver Schneider 已提交
1688 1689 1690
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1691
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
1692 1693
]

1694 1695 1696 1697 1698 1699 1700 1701 1702
[[package]]
name = "pulldown-cmark"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
]

1703 1704
[[package]]
name = "quick-error"
A
Alex Crichton 已提交
1705
version = "1.2.2"
1706 1707 1708
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
O
Oliver Schneider 已提交
1709 1710
name = "quine-mc_cluskey"
version = "0.2.4"
1711 1712 1713 1714 1715 1716 1717
source = "registry+https://github.com/rust-lang/crates.io-index"

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

A
Alex Crichton 已提交
1718 1719
[[package]]
name = "quote"
A
Alex Crichton 已提交
1720
version = "0.5.2"
A
Alex Crichton 已提交
1721 1722
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1723 1724 1725 1726 1727
 "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "quote"
A
Alex Crichton 已提交
1728
version = "0.6.8"
A
Alex Crichton 已提交
1729 1730
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
1731
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1732 1733
]

1734 1735
[[package]]
name = "racer"
N
Nick Cameron 已提交
1736
version = "2.1.13"
1737
source = "registry+https://github.com/rust-lang/crates.io-index"
1738
dependencies = [
A
Alex Crichton 已提交
1739
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1740
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1741
 "derive_more 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1742
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1743
 "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1744
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1745
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
1746
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1747
 "rustc-ap-syntax 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
1748
]
1749

A
Alex Crichton 已提交
1750 1751
[[package]]
name = "rand"
A
Alex Crichton 已提交
1752
version = "0.4.3"
A
Alex Crichton 已提交
1753 1754 1755
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
1756
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1757
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1758 1759
]

K
kennytm 已提交
1760 1761
[[package]]
name = "rand"
1762
version = "0.5.5"
K
kennytm 已提交
1763 1764 1765 1766
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
1767
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
1768
 "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
1769
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
1770 1771 1772 1773 1774 1775 1776
]

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

N
Nick Cameron 已提交
1777 1778
[[package]]
name = "rayon"
A
Alex Crichton 已提交
1779
version = "1.0.1"
N
Nick Cameron 已提交
1780 1781
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1782
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1783
 "rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1784 1785 1786 1787
]

[[package]]
name = "rayon-core"
N
Nick Cameron 已提交
1788
version = "1.4.0"
O
Oliver Schneider 已提交
1789 1790
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
1791
 "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1792
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1793
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
1794
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1795
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
1796 1797
]

N
Nick Cameron 已提交
1798 1799
[[package]]
name = "redox_syscall"
A
Alex Crichton 已提交
1800
version = "0.1.40"
O
Oliver Schneider 已提交
1801 1802 1803 1804 1805
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "redox_termios"
version = "0.1.1"
N
Nick Cameron 已提交
1806
source = "registry+https://github.com/rust-lang/crates.io-index"
O
Oliver Schneider 已提交
1807
dependencies = [
A
Alex Crichton 已提交
1808
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1809
]
N
Nick Cameron 已提交
1810

1811 1812
[[package]]
name = "regex"
A
Alex Crichton 已提交
1813
version = "0.2.11"
1814 1815
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1816 1817
 "aho-corasick 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1818
 "regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1819 1820
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1821 1822
]

1823 1824
[[package]]
name = "regex"
A
Alex Crichton 已提交
1825
version = "1.0.4"
1826 1827
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1828 1829 1830 1831 1832
 "aho-corasick 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1833 1834
]

A
Alex Crichton 已提交
1835 1836
[[package]]
name = "regex-syntax"
A
Alex Crichton 已提交
1837
version = "0.5.6"
A
Alex Crichton 已提交
1838 1839 1840 1841 1842
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

1843 1844
[[package]]
name = "regex-syntax"
A
Alex Crichton 已提交
1845
version = "0.6.2"
1846 1847 1848 1849 1850
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

1851 1852 1853 1854 1855 1856 1857 1858
[[package]]
name = "remote-test-client"
version = "0.1.0"

[[package]]
name = "remote-test-server"
version = "0.1.0"

A
Alex Crichton 已提交
1859 1860
[[package]]
name = "remove_dir_all"
A
Alex Crichton 已提交
1861
version = "0.5.1"
A
Alex Crichton 已提交
1862 1863
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1864
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1865 1866
]

1867 1868
[[package]]
name = "rls"
N
Nick Cameron 已提交
1869
version = "1.31.6"
1870
dependencies = [
A
Alex Crichton 已提交
1871
 "cargo 0.33.0",
1872
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1873
 "clippy_lints 0.0.212",
N
Nick Cameron 已提交
1874
 "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1875
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1876
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1877
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1878
 "jsonrpc-core 8.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1879
 "languageserver-types 0.51.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1880
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1881
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1882
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
1883
 "ordslice 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1884
 "racer 2.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
1885
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1886
 "rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1887
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1888
 "rls-analysis 0.16.10 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1889
 "rls-blacklist 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1890
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1891
 "rls-rustc 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
1892
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1893
 "rls-vfs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1894
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1895
 "rustc-workspace-hack 1.0.0",
1896
 "rustc_tools_util 0.1.0",
N
Nick Cameron 已提交
1897
 "rustfmt-nightly 1.0.0",
A
Alex Crichton 已提交
1898
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1899
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1900
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
1901
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1902
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1903
 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
1904 1905 1906 1907
]

[[package]]
name = "rls-analysis"
N
Nick Cameron 已提交
1908
version = "0.16.10"
1909 1910
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1911
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
1912 1913
 "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
1914
 "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)",
1915
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1916
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1917 1918 1919 1920
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
1921
[[package]]
N
Nick Cameron 已提交
1922
name = "rls-blacklist"
N
Nick Cameron 已提交
1923
version = "0.1.3"
N
Nick Cameron 已提交
1924 1925
source = "registry+https://github.com/rust-lang/crates.io-index"

1926 1927
[[package]]
name = "rls-data"
N
Nick Cameron 已提交
1928
version = "0.18.1"
1929 1930 1931 1932
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1933
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1934
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
1935 1936
]

N
Nick Cameron 已提交
1937 1938
[[package]]
name = "rls-rustc"
N
Nick Cameron 已提交
1939
version = "0.5.0"
N
Nick Cameron 已提交
1940 1941
source = "registry+https://github.com/rust-lang/crates.io-index"

1942 1943
[[package]]
name = "rls-span"
1944
version = "0.4.0"
1945
source = "registry+https://github.com/rust-lang/crates.io-index"
1946
dependencies = [
1947
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1948
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
1949
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
1950 1951 1952 1953
]

[[package]]
name = "rls-vfs"
N
Nick Cameron 已提交
1954
version = "0.7.0"
1955 1956
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
1957
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
1958
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1959 1960
]

1961 1962
[[package]]
name = "rustbook"
1963 1964
version = "0.1.0"
dependencies = [
A
Alex Crichton 已提交
1965
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matt Ickstadt 已提交
1966
 "mdbook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
1967
]
1968 1969 1970 1971 1972 1973

[[package]]
name = "rustc"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
A
Alex Crichton 已提交
1974
 "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1975
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1976
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
1977
 "chalk-engine 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
1978
 "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
1979 1980
 "fmt_macros 0.0.0",
 "graphviz 0.0.0",
1981
 "jobserver 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1982
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1983
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
1984
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
1985
 "polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
1986 1987
 "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1988
 "rustc_apfloat 0.0.0",
1989 1990
 "rustc_data_structures 0.0.0",
 "rustc_errors 0.0.0",
1991
 "rustc_fs_util 0.0.0",
1992
 "rustc_target 0.0.0",
A
Alex Crichton 已提交
1993
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1994
 "serialize 0.0.0",
1995
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1996 1997
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
A
Alex Crichton 已提交
1998
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
1999 2000
]

N
Nick Cameron 已提交
2001 2002
[[package]]
name = "rustc-ap-arena"
N
Nick Cameron 已提交
2003
version = "297.0.0"
T
topecongiro 已提交
2004 2005
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
2006
 "rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
T
topecongiro 已提交
2007 2008
]

N
Nick Cameron 已提交
2009 2010 2011 2012 2013
[[package]]
name = "rustc-ap-graphviz"
version = "297.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
2014 2015
[[package]]
name = "rustc-ap-rustc_cratesio_shim"
N
Nick Cameron 已提交
2016
version = "297.0.0"
A
Alex Crichton 已提交
2017 2018
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2019
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2020
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2021
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2022 2023
]

T
topecongiro 已提交
2024 2025
[[package]]
name = "rustc-ap-rustc_data_structures"
N
Nick Cameron 已提交
2026
version = "297.0.0"
T
topecongiro 已提交
2027 2028
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2029
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2030
 "ena 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
2031
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2032
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
2033
 "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2034 2035 2036
 "rustc-ap-graphviz 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_cratesio_shim 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2037 2038 2039
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2040
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2041 2042 2043
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

T
topecongiro 已提交
2044 2045
[[package]]
name = "rustc-ap-rustc_errors"
N
Nick Cameron 已提交
2046
version = "297.0.0"
T
topecongiro 已提交
2047 2048
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
R
Ralf Jung 已提交
2049
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
2050
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2051 2052 2053 2054
 "rustc-ap-rustc_cratesio_shim 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2055
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2056 2057 2058
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
2059 2060
[[package]]
name = "rustc-ap-rustc_target"
N
Nick Cameron 已提交
2061
version = "297.0.0"
N
Nick Cameron 已提交
2062 2063
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2064
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2065
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2066 2067 2068
 "rustc-ap-rustc_cratesio_shim 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2069 2070
]

A
Alex Crichton 已提交
2071 2072
[[package]]
name = "rustc-ap-serialize"
N
Nick Cameron 已提交
2073
version = "297.0.0"
N
Nick Cameron 已提交
2074
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2075 2076 2077
dependencies = [
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
N
Nick Cameron 已提交
2078

A
Alex Crichton 已提交
2079 2080
[[package]]
name = "rustc-ap-syntax"
N
Nick Cameron 已提交
2081
version = "297.0.0"
A
Alex Crichton 已提交
2082 2083
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2084
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2085
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2086 2087 2088 2089 2090
 "rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_errors 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_target 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2091
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2092
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2093 2094
]

N
Nick Cameron 已提交
2095 2096
[[package]]
name = "rustc-ap-syntax_pos"
N
Nick Cameron 已提交
2097
version = "297.0.0"
A
Alex Crichton 已提交
2098 2099
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2100
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2101 2102 2103
 "rustc-ap-arena 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2104 2105 2106 2107
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

2108 2109
[[package]]
name = "rustc-demangle"
A
Alex Crichton 已提交
2110
version = "0.1.9"
2111 2112
source = "registry+https://github.com/rust-lang/crates.io-index"

2113 2114
[[package]]
name = "rustc-hash"
2115
version = "1.0.1"
2116
source = "registry+https://github.com/rust-lang/crates.io-index"
2117
dependencies = [
A
Alex Crichton 已提交
2118
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
2119
]
2120

2121 2122 2123 2124
[[package]]
name = "rustc-main"
version = "0.0.0"
dependencies = [
2125
 "rustc_codegen_ssa 0.0.0",
2126
 "rustc_driver 0.0.0",
2127
 "rustc_target 0.0.0",
2128 2129
]

J
John Kåre Alsaker 已提交
2130 2131
[[package]]
name = "rustc-rayon"
J
John Kåre Alsaker 已提交
2132
version = "0.1.1"
J
John Kåre Alsaker 已提交
2133 2134 2135
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2136
 "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2137 2138 2139 2140
]

[[package]]
name = "rustc-rayon-core"
J
John Kåre Alsaker 已提交
2141
version = "0.1.1"
J
John Kåre Alsaker 已提交
2142 2143 2144
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2145
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2146
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2147
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2148
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2149 2150
]

2151 2152
[[package]]
name = "rustc-serialize"
2153
version = "0.3.24"
2154 2155
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
2156 2157 2158 2159
[[package]]
name = "rustc-workspace-hack"
version = "1.0.0"
dependencies = [
O
Oliver Schneider 已提交
2160
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
2161
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
2162
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
2163
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2164 2165
]

2166 2167 2168 2169
[[package]]
name = "rustc_allocator"
version = "0.0.0"
dependencies = [
2170
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2171
 "rustc 0.0.0",
2172
 "rustc_data_structures 0.0.0",
2173
 "rustc_errors 0.0.0",
2174
 "rustc_target 0.0.0",
2175
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2176 2177 2178 2179
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2180 2181 2182 2183
[[package]]
name = "rustc_apfloat"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2184
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2185
 "rustc_cratesio_shim 0.0.0",
2186
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2187 2188
]

J
Jorge Aparicio 已提交
2189 2190 2191 2192
[[package]]
name = "rustc_asan"
version = "0.0.0"
dependencies = [
2193
 "alloc 0.0.0",
2194
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2195
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2196
 "compiler_builtins 0.0.0",
J
Jorge Aparicio 已提交
2197 2198 2199
 "core 0.0.0",
]

2200 2201 2202 2203 2204
[[package]]
name = "rustc_borrowck"
version = "0.0.0"
dependencies = [
 "graphviz 0.0.0",
2205
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2206
 "rustc 0.0.0",
2207
 "rustc_data_structures 0.0.0",
2208 2209 2210 2211 2212 2213
 "rustc_errors 0.0.0",
 "rustc_mir 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

I
Irina Popa 已提交
2214 2215 2216 2217
[[package]]
name = "rustc_codegen_llvm"
version = "0.0.0"
dependencies = [
2218
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
2219
 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2220
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2221
 "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2222 2223 2224
 "rustc_llvm 0.0.0",
]

2225 2226 2227
[[package]]
name = "rustc_codegen_ssa"
version = "0.0.0"
2228
dependencies = [
B
bjorn3 已提交
2229
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2230
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
B
bjorn3 已提交
2231 2232 2233
 "jobserver 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2234 2235
 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
B
bjorn3 已提交
2236
 "rustc 0.0.0",
2237
 "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
B
bjorn3 已提交
2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
 "rustc_allocator 0.0.0",
 "rustc_apfloat 0.0.0",
 "rustc_codegen_utils 0.0.0",
 "rustc_data_structures 0.0.0",
 "rustc_errors 0.0.0",
 "rustc_fs_util 0.0.0",
 "rustc_incremental 0.0.0",
 "rustc_mir 0.0.0",
 "rustc_target 0.0.0",
 "serialize 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
2250
]
2251

I
Irina Popa 已提交
2252 2253 2254 2255
[[package]]
name = "rustc_codegen_utils"
version = "0.0.0"
dependencies = [
2256
 "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
2257
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2258 2259 2260
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
 "rustc_incremental 0.0.0",
2261
 "rustc_metadata 0.0.0",
I
Irina Popa 已提交
2262 2263 2264 2265 2266 2267
 "rustc_mir 0.0.0",
 "rustc_target 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2268 2269 2270 2271
[[package]]
name = "rustc_cratesio_shim"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2272
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2273
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2274
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2275 2276
]

2277 2278 2279 2280
[[package]]
name = "rustc_data_structures"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2281
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nicholas Nethercote 已提交
2282
 "ena 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
2283
 "graphviz 0.0.0",
2284
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2285
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
2286
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2287 2288
 "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2289
 "rustc_cratesio_shim 0.0.0",
2290
 "serialize 0.0.0",
2291
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2292
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2293 2294 2295 2296 2297 2298 2299
]

[[package]]
name = "rustc_driver"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
A
Alex Crichton 已提交
2300
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
2301
 "graphviz 0.0.0",
2302
 "jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
2303
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2304
 "rustc 0.0.0",
J
John Kåre Alsaker 已提交
2305
 "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2306
 "rustc_allocator 0.0.0",
2307
 "rustc_borrowck 0.0.0",
I
Irina Popa 已提交
2308
 "rustc_codegen_utils 0.0.0",
2309
 "rustc_data_structures 0.0.0",
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
 "rustc_errors 0.0.0",
 "rustc_incremental 0.0.0",
 "rustc_lint 0.0.0",
 "rustc_metadata 0.0.0",
 "rustc_mir 0.0.0",
 "rustc_passes 0.0.0",
 "rustc_plugin 0.0.0",
 "rustc_privacy 0.0.0",
 "rustc_resolve 0.0.0",
 "rustc_save_analysis 0.0.0",
2320
 "rustc_target 0.0.0",
2321
 "rustc_traits 0.0.0",
2322
 "rustc_typeck 0.0.0",
A
Alex Crichton 已提交
2323
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2324
 "serialize 0.0.0",
L
ljedrz 已提交
2325
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2326 2327 2328 2329 2330 2331 2332 2333 2334
 "syntax 0.0.0",
 "syntax_ext 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_errors"
version = "0.0.0"
dependencies = [
R
Ralf Jung 已提交
2335
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
2336
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2337
 "rustc_cratesio_shim 0.0.0",
O
Oliver Schneider 已提交
2338
 "rustc_data_structures 0.0.0",
2339
 "serialize 0.0.0",
2340
 "syntax_pos 0.0.0",
M
Mark Rousskov 已提交
2341
 "termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
2342
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2343 2344
]

2345 2346 2347 2348
[[package]]
name = "rustc_fs_util"
version = "0.0.0"

2349 2350 2351 2352 2353
[[package]]
name = "rustc_incremental"
version = "0.0.0"
dependencies = [
 "graphviz 0.0.0",
2354
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2355
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2356 2357
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
2358
 "rustc_fs_util 0.0.0",
2359 2360 2361 2362 2363 2364 2365 2366 2367
 "serialize 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_lint"
version = "0.0.0"
dependencies = [
2368
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2369
 "rustc 0.0.0",
2370
 "rustc_data_structures 0.0.0",
2371
 "rustc_target 0.0.0",
2372 2373 2374 2375 2376 2377 2378 2379 2380
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_llvm"
version = "0.0.0"
dependencies = [
 "build_helper 0.1.0",
2381
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
2382 2383
]

J
Jorge Aparicio 已提交
2384 2385 2386 2387
[[package]]
name = "rustc_lsan"
version = "0.0.0"
dependencies = [
2388
 "alloc 0.0.0",
2389
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2390
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2391
 "compiler_builtins 0.0.0",
J
Jorge Aparicio 已提交
2392 2393 2394
 "core 0.0.0",
]

2395 2396 2397 2398
[[package]]
name = "rustc_metadata"
version = "0.0.0"
dependencies = [
2399
 "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
2400
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2401
 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2402 2403 2404
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
 "rustc_errors 0.0.0",
2405
 "rustc_target 0.0.0",
2406
 "serialize 0.0.0",
2407
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2408
 "syntax 0.0.0",
2409
 "syntax_ext 0.0.0",
2410 2411 2412 2413 2414 2415 2416
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_mir"
version = "0.0.0"
dependencies = [
O
Oliver Schneider 已提交
2417
 "arena 0.0.0",
A
Alex Crichton 已提交
2418
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2419
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
S
Santiago Pastorino 已提交
2420
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
2421
 "graphviz 0.0.0",
2422
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2423
 "log_settings 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2424
 "polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
2425
 "rustc 0.0.0",
2426
 "rustc_apfloat 0.0.0",
2427
 "rustc_data_structures 0.0.0",
2428
 "rustc_errors 0.0.0",
2429
 "rustc_target 0.0.0",
O
Oliver Schneider 已提交
2430
 "serialize 0.0.0",
2431
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2432 2433 2434 2435
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

J
Jorge Aparicio 已提交
2436 2437 2438 2439
[[package]]
name = "rustc_msan"
version = "0.0.0"
dependencies = [
2440
 "alloc 0.0.0",
2441
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2442
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2443
 "compiler_builtins 0.0.0",
J
Jorge Aparicio 已提交
2444 2445 2446
 "core 0.0.0",
]

2447 2448 2449 2450
[[package]]
name = "rustc_passes"
version = "0.0.0"
dependencies = [
2451
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2452
 "rustc 0.0.0",
2453
 "rustc_data_structures 0.0.0",
2454
 "rustc_errors 0.0.0",
O
Oliver Schneider 已提交
2455
 "rustc_mir 0.0.0",
2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_platform_intrinsics"
version = "0.0.0"

[[package]]
name = "rustc_plugin"
version = "0.0.0"
dependencies = [
 "rustc 0.0.0",
 "rustc_errors 0.0.0",
 "rustc_metadata 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_privacy"
version = "0.0.0"
dependencies = [
 "rustc 0.0.0",
2480
 "rustc_data_structures 0.0.0",
2481
 "rustc_typeck 0.0.0",
2482 2483 2484 2485 2486 2487 2488 2489 2490
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_resolve"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2491
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2492
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2493
 "rustc 0.0.0",
O
Oliver Schneider 已提交
2494
 "rustc_data_structures 0.0.0",
2495
 "rustc_errors 0.0.0",
2496
 "rustc_metadata 0.0.0",
2497 2498 2499 2500 2501 2502 2503 2504
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_save_analysis"
version = "0.0.0"
dependencies = [
2505
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2506
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
2507
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2508
 "rustc 0.0.0",
2509
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
2510
 "rustc_codegen_utils 0.0.0",
N
Nick Cameron 已提交
2511
 "rustc_data_structures 0.0.0",
2512
 "rustc_target 0.0.0",
2513
 "rustc_typeck 0.0.0",
2514 2515 2516 2517
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2518 2519 2520 2521
[[package]]
name = "rustc_target"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2522
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2523
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2524
 "rustc_cratesio_shim 0.0.0",
2525
 "rustc_data_structures 0.0.0",
2526 2527 2528
 "serialize 0.0.0",
]

M
Matthias Krüger 已提交
2529 2530 2531 2532
[[package]]
name = "rustc_tools_util"
version = "0.1.0"

2533 2534 2535 2536
[[package]]
name = "rustc_traits"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2537
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2538
 "chalk-engine 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
2539
 "graphviz 0.0.0",
2540
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2541 2542
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
2543
 "rustc_target 0.0.0",
2544
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2545 2546 2547 2548
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

J
Jorge Aparicio 已提交
2549 2550 2551 2552
[[package]]
name = "rustc_tsan"
version = "0.0.0"
dependencies = [
2553
 "alloc 0.0.0",
2554
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2555
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2556
 "compiler_builtins 0.0.0",
J
Jorge Aparicio 已提交
2557 2558 2559
 "core 0.0.0",
]

2560 2561 2562 2563 2564
[[package]]
name = "rustc_typeck"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2565
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2566
 "rustc 0.0.0",
T
Tim Neumann 已提交
2567
 "rustc_data_structures 0.0.0",
2568 2569
 "rustc_errors 0.0.0",
 "rustc_platform_intrinsics 0.0.0",
2570
 "rustc_target 0.0.0",
2571
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2572 2573 2574 2575
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2576 2577 2578 2579 2580 2581 2582 2583
[[package]]
name = "rustc_version"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

2584 2585 2586 2587
[[package]]
name = "rustdoc"
version = "0.0.0"
dependencies = [
G
Guillaume Gomez 已提交
2588
 "minifier 0.0.20 (registry+https://github.com/rust-lang/crates.io-index)",
2589
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
2590
 "pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2591
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
2592 2593
]

G
Guillaume Gomez 已提交
2594 2595 2596 2597
[[package]]
name = "rustdoc-themes"
version = "0.1.0"

M
Mark Simulacrum 已提交
2598 2599 2600 2601 2602
[[package]]
name = "rustdoc-tool"
version = "0.0.0"
dependencies = [
 "rustdoc 0.0.0",
2603 2604
]

2605 2606
[[package]]
name = "rustfix"
A
Alex Crichton 已提交
2607
version = "0.4.2"
A
Alex Crichton 已提交
2608 2609
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2610
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2611
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2612
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
2613
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2614
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
2615 2616
]

2617 2618
[[package]]
name = "rustfmt-nightly"
N
Nick Cameron 已提交
2619
version = "1.0.0"
2620
dependencies = [
A
Alex Crichton 已提交
2621
 "assert_cli 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2622
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2623
 "bytecount 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2624
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2625
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
2626
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2627
 "env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2628
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2629 2630
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2631
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2632
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2633
 "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2634 2635 2636
 "rustc-ap-rustc_target 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
2637
 "rustc-workspace-hack 1.0.0",
A
Alex Crichton 已提交
2638
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
2639
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2640
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alan Du 已提交
2641
 "term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2642
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2643
 "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Boris-Chengbiao Zhou 已提交
2644 2645
]

A
Alex Crichton 已提交
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656
[[package]]
name = "rusty-fork"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "wait-timeout 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
2657 2658 2659 2660 2661
[[package]]
name = "ryu"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"

2662 2663
[[package]]
name = "same-file"
A
Alex Crichton 已提交
2664
version = "1.0.3"
2665 2666
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2667
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2668 2669 2670 2671
]

[[package]]
name = "schannel"
2672
version = "0.1.14"
2673 2674
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2675
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2676
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
2677 2678
]

A
Alex Crichton 已提交
2679 2680
[[package]]
name = "scoped-tls"
A
Alex Crichton 已提交
2681
version = "0.1.2"
A
Alex Crichton 已提交
2682 2683
source = "registry+https://github.com/rust-lang/crates.io-index"

O
Oliver Schneider 已提交
2684 2685 2686 2687 2688
[[package]]
name = "scopeguard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

2689 2690 2691 2692 2693 2694
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2695
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
2696 2697 2698 2699 2700 2701 2702 2703 2704
]

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

[[package]]
name = "serde"
A
Alex Crichton 已提交
2705
version = "1.0.75"
2706 2707 2708 2709
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "serde_derive"
2710
version = "1.0.80"
2711 2712
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
2713
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2714
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
2715
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
2716 2717 2718 2719
]

[[package]]
name = "serde_ignored"
2720
version = "0.0.4"
2721 2722
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2723
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
2724
]
S
Steve Klabnik 已提交
2725 2726 2727

[[package]]
name = "serde_json"
A
Alex Crichton 已提交
2728
version = "1.0.31"
S
Steve Klabnik 已提交
2729 2730
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2731
 "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2732 2733
 "ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
S
Steve Klabnik 已提交
2734 2735
]

2736 2737 2738
[[package]]
name = "serialize"
version = "0.0.0"
2739 2740 2741
dependencies = [
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
2742

2743 2744
[[package]]
name = "shell-escape"
A
Alex Crichton 已提交
2745
version = "0.1.4"
2746 2747
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
2748 2749 2750 2751 2752
[[package]]
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
2753 2754 2755 2756 2757
[[package]]
name = "siphasher"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

2758 2759
[[package]]
name = "smallvec"
2760
version = "0.6.5"
2761
source = "registry+https://github.com/rust-lang/crates.io-index"
2762 2763 2764
dependencies = [
 "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2765

M
Mark Simulacrum 已提交
2766 2767
[[package]]
name = "socket2"
2768
version = "0.3.8"
M
Mark Simulacrum 已提交
2769 2770
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2771
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2772
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2773
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
2774
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
2775 2776
]

2777 2778
[[package]]
name = "stable_deref_trait"
A
Alex Crichton 已提交
2779
version = "1.1.0"
2780 2781
source = "registry+https://github.com/rust-lang/crates.io-index"

2782 2783 2784 2785 2786 2787
[[package]]
name = "std"
version = "0.0.0"
dependencies = [
 "alloc 0.0.0",
 "build_helper 0.1.0",
2788
 "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
2789
 "compiler_builtins 0.0.0",
2790
 "core 0.0.0",
2791
 "dlmalloc 0.0.0",
2792
 "fortanix-sgx-abi 0.0.0",
2793 2794 2795
 "libc 0.0.0",
 "panic_abort 0.0.0",
 "panic_unwind 0.0.0",
2796
 "profiler_builtins 0.0.0",
2797
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
2798 2799 2800 2801
 "rustc_asan 0.0.0",
 "rustc_lsan 0.0.0",
 "rustc_msan 0.0.0",
 "rustc_tsan 0.0.0",
2802 2803 2804
 "unwind 0.0.0",
]

S
steveklabnik 已提交
2805 2806
[[package]]
name = "string_cache"
A
Alex Crichton 已提交
2807
version = "0.7.3"
S
steveklabnik 已提交
2808 2809
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2810
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2811 2812
 "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
2813
 "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2814
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2815
 "string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
2816 2817 2818 2819 2820
 "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "string_cache_codegen"
A
Alex Crichton 已提交
2821
version = "0.4.1"
S
steveklabnik 已提交
2822 2823
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2824 2825 2826 2827
 "phf_generator 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
2828 2829 2830 2831 2832 2833 2834 2835
 "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

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

2836 2837
[[package]]
name = "strsim"
A
Aleksey Kladov 已提交
2838
version = "0.7.0"
2839 2840
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Matt Ickstadt 已提交
2841 2842
[[package]]
name = "strum"
2843
version = "0.11.0"
M
Matt Ickstadt 已提交
2844 2845 2846 2847
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "strum_macros"
2848
version = "0.11.0"
M
Matt Ickstadt 已提交
2849 2850
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2851
 "heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2852
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2853
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
2854
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matt Ickstadt 已提交
2855 2856
]

2857 2858 2859 2860 2861 2862 2863 2864 2865 2866
[[package]]
name = "syn"
version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
 "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
2867 2868 2869 2870 2871 2872
[[package]]
name = "syn"
version = "0.15.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2873
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2874 2875 2876
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

2877 2878 2879 2880 2881 2882 2883 2884
[[package]]
name = "synom"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
2885 2886
[[package]]
name = "synstructure"
2887
version = "0.10.1"
A
Alex Crichton 已提交
2888 2889
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
2890
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2891
 "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
2892
 "syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2893
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2894 2895
]

2896 2897 2898 2899
[[package]]
name = "syntax"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2900
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2901
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2902
 "rustc_data_structures 0.0.0",
2903
 "rustc_errors 0.0.0",
2904
 "rustc_target 0.0.0",
A
Alex Crichton 已提交
2905
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2906
 "serialize 0.0.0",
2907
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2908 2909 2910 2911 2912 2913 2914 2915
 "syntax_pos 0.0.0",
]

[[package]]
name = "syntax_ext"
version = "0.0.0"
dependencies = [
 "fmt_macros 0.0.0",
2916
 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
2917
 "rustc_data_structures 0.0.0",
2918
 "rustc_errors 0.0.0",
2919
 "rustc_target 0.0.0",
2920
 "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2921 2922 2923 2924 2925 2926 2927 2928
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "syntax_pos"
version = "0.0.0"
dependencies = [
2929
 "arena 0.0.0",
A
Alex Crichton 已提交
2930
 "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2931
 "rustc_data_structures 0.0.0",
A
Alex Crichton 已提交
2932
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2933
 "serialize 0.0.0",
M
Mark Simulacrum 已提交
2934
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2935 2936
]

2937 2938
[[package]]
name = "tar"
A
Alex Crichton 已提交
2939
version = "0.4.19"
2940 2941
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2942
 "filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
2943
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2944
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2945
 "xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
2946 2947
]

A
Aleksey Kladov 已提交
2948 2949
[[package]]
name = "tempfile"
A
Alex Crichton 已提交
2950
version = "3.0.3"
A
Aleksey Kladov 已提交
2951 2952
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2953
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
2954
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2955
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2956
 "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
2957
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
2958 2959
]

S
steveklabnik 已提交
2960 2961 2962 2963 2964
[[package]]
name = "tendril"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2965
 "futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
2966 2967 2968 2969
 "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

2970 2971 2972 2973
[[package]]
name = "term"
version = "0.0.0"

A
Alan Du 已提交
2974 2975 2976 2977 2978
[[package]]
name = "term"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2979
 "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
2980
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alan Du 已提交
2981 2982
]

2983 2984
[[package]]
name = "termcolor"
A
Alex Crichton 已提交
2985
version = "1.0.2"
2986 2987
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2988
 "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
2989 2990
]

2991
[[package]]
O
Oliver Schneider 已提交
2992 2993
name = "termion"
version = "1.5.1"
2994 2995
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2996
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2997
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
2998
 "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2999 3000
]

3001 3002 3003 3004
[[package]]
name = "test"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
3005
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
3006
 "proc_macro 0.0.0",
3007 3008 3009
 "term 0.0.0",
]

S
steveklabnik 已提交
3010 3011
[[package]]
name = "textwrap"
A
Alex Crichton 已提交
3012
version = "0.10.0"
S
steveklabnik 已提交
3013 3014
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
M
Mark Simulacrum 已提交
3015
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3016 3017
]

A
Alex Crichton 已提交
3018 3019
[[package]]
name = "thread_local"
A
Alex Crichton 已提交
3020
version = "0.3.6"
3021 3022
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3023
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
3024 3025
]

3026 3027 3028
[[package]]
name = "tidy"
version = "0.1.0"
3029
dependencies = [
A
Alex Crichton 已提交
3030
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
3031
 "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3032
 "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
3033
]
3034

A
Alex Crichton 已提交
3035 3036
[[package]]
name = "time"
A
Alex Crichton 已提交
3037
version = "0.1.40"
A
Alex Crichton 已提交
3038 3039
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3040
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3041
 "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
3042
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3043 3044
]

3045 3046
[[package]]
name = "toml"
A
Alex Crichton 已提交
3047
version = "0.4.6"
3048 3049
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3050
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
3051 3052
]

S
steveklabnik 已提交
3053 3054 3055 3056 3057 3058 3059
[[package]]
name = "toml-query"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "is-match 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3060
 "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3061
 "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3062
 "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3063 3064
]

E
Eric Huss 已提交
3065 3066 3067 3068 3069
[[package]]
name = "typenum"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3070 3071 3072 3073 3074
[[package]]
name = "ucd-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

3075 3076
[[package]]
name = "unicode-bidi"
S
steveklabnik 已提交
3077
version = "0.3.4"
S
Steve Klabnik 已提交
3078 3079
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3080
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
3081 3082
]

3083 3084
[[package]]
name = "unicode-normalization"
A
Alex Crichton 已提交
3085
version = "0.1.7"
3086 3087 3088 3089
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "unicode-segmentation"
A
Alex Crichton 已提交
3090
version = "1.2.1"
3091 3092 3093 3094
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "unicode-width"
M
Mark Simulacrum 已提交
3095
version = "0.1.5"
3096 3097
source = "registry+https://github.com/rust-lang/crates.io-index"

3098 3099 3100 3101 3102
[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3103 3104 3105 3106 3107
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
Steve Klabnik 已提交
3108 3109
[[package]]
name = "unreachable"
N
Nick Cameron 已提交
3110
version = "1.0.0"
S
Steve Klabnik 已提交
3111 3112 3113 3114 3115
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

3116 3117 3118 3119
[[package]]
name = "unstable-book-gen"
version = "0.1.0"
dependencies = [
A
Alex Crichton 已提交
3120
 "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
3121 3122 3123
 "tidy 0.1.0",
]

N
Nick Cameron 已提交
3124 3125 3126 3127
[[package]]
name = "unwind"
version = "0.0.0"
dependencies = [
3128
 "compiler_builtins 0.0.0",
N
Nick Cameron 已提交
3129 3130 3131 3132
 "core 0.0.0",
 "libc 0.0.0",
]

3133 3134
[[package]]
name = "url"
A
Alex Crichton 已提交
3135
version = "1.7.1"
3136 3137
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3138
 "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3139
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
3140
 "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
3141 3142 3143 3144 3145 3146 3147
]

[[package]]
name = "url_serde"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3148
 "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3149
 "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
3150 3151
]

S
steveklabnik 已提交
3152 3153 3154 3155 3156
[[package]]
name = "utf-8"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

3157 3158
[[package]]
name = "utf8-ranges"
A
Alex Crichton 已提交
3159
version = "1.0.1"
3160 3161
source = "registry+https://github.com/rust-lang/crates.io-index"

3162 3163
[[package]]
name = "vcpkg"
A
Alex Crichton 已提交
3164
version = "0.2.6"
3165 3166
source = "registry+https://github.com/rust-lang/crates.io-index"

3167 3168
[[package]]
name = "vec_map"
A
Alex Crichton 已提交
3169
version = "0.8.1"
3170 3171
source = "registry+https://github.com/rust-lang/crates.io-index"

R
Ralf Jung 已提交
3172 3173
[[package]]
name = "vergen"
R
Ralf Jung 已提交
3174
version = "3.0.4"
R
Ralf Jung 已提交
3175 3176 3177 3178
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
3179
 "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
3180 3181
]

A
Alex Crichton 已提交
3182 3183
[[package]]
name = "version_check"
3184
version = "0.1.5"
A
Alex Crichton 已提交
3185 3186
source = "registry+https://github.com/rust-lang/crates.io-index"

S
Steve Klabnik 已提交
3187 3188 3189 3190 3191
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3192 3193 3194 3195 3196 3197 3198 3199
[[package]]
name = "wait-timeout"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
]

3200 3201
[[package]]
name = "walkdir"
A
Alex Crichton 已提交
3202
version = "2.2.5"
3203 3204
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3205
 "same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
3206
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3207
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3208 3209
]

3210 3211 3212 3213 3214
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"

3215 3216
[[package]]
name = "winapi"
3217
version = "0.3.6"
3218 3219 3220 3221 3222 3223
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

3224 3225 3226 3227 3228
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

3229 3230 3231 3232 3233
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3234 3235 3236 3237 3238
[[package]]
name = "winapi-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3239
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3240 3241
]

3242 3243 3244 3245 3246
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

3247 3248
[[package]]
name = "wincolor"
A
Alex Crichton 已提交
3249
version = "1.0.1"
3250 3251
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3252
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3253
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3254 3255
]

3256 3257
[[package]]
name = "xattr"
A
Alex Crichton 已提交
3258
version = "0.2.2"
3259 3260
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3261
 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
3262 3263 3264 3265
]

[[package]]
name = "xz2"
A
Alex Crichton 已提交
3266
version = "0.1.5"
3267 3268
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Bastien Orivel 已提交
3269
 "lzma-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
3270 3271 3272 3273 3274 3275 3276
]

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

3277
[metadata]
A
Alex Crichton 已提交
3278
"checksum aho-corasick 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee94e9463ccb9d681e7b708082687b2c56d2bd420ca8a3d3157d27d59508ec0"
S
steveklabnik 已提交
3279
"checksum ammonia 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd4c682378117e4186a492b2252b9537990e1617f44aed9788b9a1149de45477"
A
Aleksey Kladov 已提交
3280
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
N
Nick Cameron 已提交
3281
"checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
A
Alex Crichton 已提交
3282
"checksum assert_cli 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98589b0e465a6c510d95fceebd365bb79bedece7f6e18a480897f2015f85ec51"
R
Ralf Jung 已提交
3283
"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
A
Alex Crichton 已提交
3284
"checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a"
3285
"checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0"
A
Alex Crichton 已提交
3286 3287
"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a"
"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf"
M
Marc-Antoine Perennou 已提交
3288
"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5"
A
Alex Crichton 已提交
3289
"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
3290
"checksum bufstream 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f382711e76b9de6c744cc00d0497baba02fb00a787f088c879f01d09468e32"
N
Nick Cameron 已提交
3291
"checksum bytecount 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b92204551573580e078dc80017f36a213eb77a0450e4ddd8cfa0f3f2d1f0178f"
A
Alex Crichton 已提交
3292
"checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9"
A
Alex Crichton 已提交
3293
"checksum bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "716960a18f978640f25101b5cbf1c6f6b0d3192fab36a2d98ca96f0ecbe41010"
3294
"checksum cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d8dfe3adeb30f7938e6c1dd5327f29235d8ada3e898aeb08c343005ec2915a2"
3295
"checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
A
Alex Crichton 已提交
3296
"checksum cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4e7bb64a8ebb0d856483e1e682ea3422f883c5f5615a90d51a2c82fe87fdd3"
3297
"checksum chalk-engine 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6749eb72e7d4355d944a99f15fbaea701b978c18c5e184a025fcde942b0c9779"
3298
"checksum chalk-macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "295635afd6853aa9f20baeb7f0204862440c0fe994c5a253d5f479dac41d047e"
A
Alex Crichton 已提交
3299 3300
"checksum chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6962c635d530328acc53ac6a955e83093fedc91c5809dfac1fa60fa470830a37"
"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
K
kennytm 已提交
3301
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
A
Alex Crichton 已提交
3302
"checksum cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)" = "704fbf3bb5149daab0afb255dbea24a1f08d2f4099cedb9baab6d470d4c5eefb"
N
Nick Cameron 已提交
3303
"checksum colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b0aa3473e85a3161b59845d6096b289bb577874cafeaf75ea1b1beaa6572c7fc"
O
Oliver Schneider 已提交
3304 3305
"checksum commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007"
"checksum commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2"
O
Oliver Scherer 已提交
3306
"checksum compiletest_rs 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "89747fe073b7838343bd2c2445e7a7c2e0d415598f8925f0fa9205b9cdfc48cb"
A
Alex Crichton 已提交
3307 3308
"checksum core-foundation 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cc3532ec724375c7cb7ff0a097b714fde180bb1f6ed2ab27cfcd99ffca873cd2"
"checksum core-foundation-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a3fb15cdbdd9cf8b82d97d0296bb5cd3631bba58d6e31650a002a8e7fb5721f9"
3309
"checksum crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "24ce9782d4d5c53674646a6a4c1863a21a8fc0cb649b3c94dfc16e45071dea19"
N
Nick Cameron 已提交
3310
"checksum crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b85741761b7f160bc5e7e0c14986ef685b7f8bf9b7ad081c60c604bb4649827"
N
Nick Cameron 已提交
3311
"checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
A
Alex Crichton 已提交
3312
"checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150"
N
Nick Cameron 已提交
3313
"checksum crossbeam-epoch 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c90f1474584f38e270b5b613e898c8c328aa4f3dea85e0a27ac2e642f009416"
N
Nick Cameron 已提交
3314
"checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
A
Alex Crichton 已提交
3315
"checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015"
A
Alex Crichton 已提交
3316
"checksum crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c55913cc2799171a550e307918c0a360e8c16004820291bf3b638969b4a01816"
A
Alex Crichton 已提交
3317
"checksum crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "09de9ee0fc255ace04c7fa0763c9395a945c37c8292bb554f8d48361d1dcf1b4"
A
Alex Crichton 已提交
3318 3319
"checksum curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "c7c9d851c825e0c033979d4516c9173bc19a78a96eb4d6ae51d4045440eafa16"
"checksum curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)" = "721c204978be2143fab0a84b708c49d79d1f6100b8785610f456043a90708870"
D
Douglas Campos 已提交
3320
"checksum datafrog 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16d724bf4ffe77cdceeecd461009b5f8d9e23c5d645d68bedb4586bf43e7e142"
3321
"checksum derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6ca414e896ae072546f4d789f452daaecf60ddee4c9df5dc6d5936d769e3d87c"
N
Nick Cameron 已提交
3322
"checksum derive_more 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f57d78cf3bd45270dad4e70c21ec77a960b36c7a841ff9db76aaa775a8fb871"
O
Oliver Schneider 已提交
3323
"checksum diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a"
M
Mark Simulacrum 已提交
3324
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
R
Ralf Jung 已提交
3325
"checksum directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "72d337a64190607d4fcca2cb78982c5dd57f4916e19696b48a575fa746b6cb0f"
A
Alex Crichton 已提交
3326
"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
3327
"checksum elasticlunr-rs 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a99a310cd1f9770e7bf8e48810c7bcbb0e078c8fb23a8c7bcf0da4c2bf61a455"
N
Nicholas Nethercote 已提交
3328
"checksum ena 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f56c93cc076508c549d9bb747f79aa9b4eb098be7b8cad8830c3137ef52d1e00"
3329
"checksum ena 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "88dc8393b3c7352f94092497f6b52019643e493b6b890eb417cdb7c46117e621"
A
Alex Crichton 已提交
3330
"checksum env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)" = "f4d7e69c283751083d53d01eac767407343b8b69c4bd70058e08adc2637cb257"
A
Alex Crichton 已提交
3331
"checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e"
N
Nick Cameron 已提交
3332
"checksum environment 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4b14e20978669064c33b4c1e0fb4083412e40fe56cbea2eae80fd7591503ee"
3333
"checksum error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3"
R
Ralf Jung 已提交
3334
"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
A
Alex Crichton 已提交
3335
"checksum failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9"
3336
"checksum failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "64c2d913fe8ed3b6c6518eedf4538255b989945c14c2a7d5cbff62a5e2120596"
A
Alex Crichton 已提交
3337
"checksum filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da4b9849e77b13195302c174324b5ba73eec9b236b24c221a61000daefb95c5f"
3338
"checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
3339
"checksum flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4af030962d89d62aa52cd9492083b1cd9b2d1a77764878102a6c0f86b4d5444d"
O
Oliver Schneider 已提交
3340 3341 3342
"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
"checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
"checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
3343
"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
3344
"checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
3345
"checksum fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f"
3346 3347
"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
A
Alex Crichton 已提交
3348 3349
"checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
"checksum futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "1a70b146671de62ec8c8ed572219ca5d594d9b06c0b364d5e67b722fc559b48c"
E
Eric Huss 已提交
3350
"checksum fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
A
Alex Crichton 已提交
3351
"checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05"
E
Eric Huss 已提交
3352
"checksum git2 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "591f8be1674b421644b6c030969520bc3fa12114d2eb467471982ed3e9584e71"
3353
"checksum git2-curl 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0173e317f8ba21f3fff0f71549fead5e42e67961dbd402bf69f42775f3cc78b4"
3354
"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
A
Alex Crichton 已提交
3355
"checksum globset 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8e49edbcc9c7fc5beb8c0a54e7319ff8bed353a2b55e85811c6281188c2a6c84"
A
Alex Crichton 已提交
3356
"checksum handlebars 0.32.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d89ec99d1594f285d4590fc32bac5f75cdab383f1123d504d27862c644a807dd"
3357
"checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
A
Alex Crichton 已提交
3358
"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
A
Alex Crichton 已提交
3359
"checksum home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "80dff82fb58cfbbc617fb9a9184b010be0529201553cda50ad04372bc2333aff"
3360
"checksum html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c213fa6a618dc1da552f54f85cba74b05d8e883c92ec4e89067736938084c26e"
A
Alex Crichton 已提交
3361
"checksum humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e"
A
Alex Crichton 已提交
3362
"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
M
Manish Goregaokar 已提交
3363
"checksum if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4bac95d9aa0624e7b78187d6fb8ab012b41d9f6f54b1bcb61e61c4845f8357ec"
A
Alex Crichton 已提交
3364
"checksum ignore 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3e9faa7c84064f07b40da27044af629f578bc7994b650d3e458d0c29183c1d91"
E
Eric Huss 已提交
3365
"checksum im-rc 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4591152fd573cf453a890b5f9fdc5c328a751a0785539316739d5f85e5c468c"
S
steveklabnik 已提交
3366
"checksum is-match 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7e5b386aef33a1c677be65237cb9d32c3f3ef56bd035949710c4bb13083eb053"
A
Alex Crichton 已提交
3367
"checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450"
A
Alex Crichton 已提交
3368
"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
3369
"checksum jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "bfc62c8e50e381768ce8ee0428ee53741929f7ebd73e4d83f669bcf7693e00ae"
3370
"checksum jobserver 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "60af5f849e1981434e4a31d3d782c4774ae9b434ce55b101a96ecfd09147e8be"
3371
"checksum json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be"
I
Igor Matuszewski 已提交
3372
"checksum jsonrpc-core 8.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ddf83704f4e79979a424d1082dd2c1e52683058056c9280efa19ac5f6bc9033c"
3373
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
N
Nick Cameron 已提交
3374
"checksum languageserver-types 0.51.1 (registry+https://github.com/rust-lang/crates.io-index)" = "68de833188ada4e175d04a028f03f244f6370eedbcc75a05604d47d925933f69"
O
Oliver Schneider 已提交
3375
"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
A
Alex Crichton 已提交
3376
"checksum lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7"
A
Alex Crichton 已提交
3377
"checksum lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddba4c30a78328befecec92fc94970e53b3ae385827d28620f0f5bb2493081e0"
3378
"checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"
3379
"checksum libgit2-sys 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4916b5addc78ec36cc309acfcdf0b9f9d97ab7b84083118b248709c5b7029356"
A
Alex Crichton 已提交
3380
"checksum libnghttp2-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ffbfb81475cc9f625e44f3a8f8b9cf7173815ae1c7cc2fa91853ec009e38198"
3381
"checksum libssh2-sys 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "126a1f4078368b163bfdee65fbab072af08a1b374a5551b21e87ade27b1fbf9d"
3382
"checksum libz-sys 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)" = "4401fe74560a0d46fce3464625ac8aa7a79d291dd28cee021d18852d5191c280"
M
Mark Rousskov 已提交
3383
"checksum lock_api 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "949826a5ccf18c1b3a7c3d57692778d21768b79e46eb9dd07bfc4c2160036c54"
3384
"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
3385
"checksum log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fcce5fa49cc693c312001daf1d13411c4a5283796bac1084299ea3e567113f"
A
Alex Crichton 已提交
3386
"checksum log_settings 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19af41f0565d7c19b2058153ad0b42d4d5ce89ec4dbf06ed6741114a8b63e7cd"
B
Bastien Orivel 已提交
3387
"checksum lzma-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d1eaa027402541975218bb0eec67d6b0412f6233af96e0d096d31dbdfd22e614"
S
steveklabnik 已提交
3388
"checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
G
Guillaume Gomez 已提交
3389
"checksum macro-utils 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2c4deaccc2ead6a28c16c0ba82f07d52b6475397415ce40876e559b0b0ea510"
S
steveklabnik 已提交
3390 3391
"checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43"
"checksum markup5ever 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfedc97d5a503e96816d10fedcd5b42f760b2e525ce2f7ec71f6a41780548475"
A
Alex Crichton 已提交
3392
"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
M
Matt Ickstadt 已提交
3393
"checksum mdbook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "90b5a8d7e341ceee5db3882a06078d42661ddcfa2b3687319cc5da76ec4e782f"
A
Alex Crichton 已提交
3394
"checksum memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3b4142ab8738a78c51896f704f83c11df047ff1bda9a92a661aa6361552d93d"
3395
"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
N
Nick Cameron 已提交
3396
"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
G
Guillaume Gomez 已提交
3397
"checksum minifier 0.0.20 (registry+https://github.com/rust-lang/crates.io-index)" = "96c269bb45c39b333392b2b18ad71760b34ac65666591386b0e959ed58b3f474"
N
Nick Cameron 已提交
3398
"checksum miniz-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "609ce024854aeb19a0ef7567d348aaa5a746b32fb72e336df7fcc16869d7e2b4"
A
Alex Crichton 已提交
3399
"checksum miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
A
Alex Crichton 已提交
3400
"checksum new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cdc457076c78ab54d5e0d6fa7c47981757f1e34dc39ff92787f217dede586c4"
N
Nick Cameron 已提交
3401
"checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
3402
"checksum num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8af1847c907c2f04d7bfd572fb25bbb4385c637fe5be163cf2f8c5d778fe1e7d"
A
Alex Crichton 已提交
3403 3404
"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea"
"checksum num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "630de1ef5cc79d0cdd78b7e33b81f083cbfe90de0f4b2b2f07f905867c70e9fe"
3405
"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
A
Alex Crichton 已提交
3406
"checksum open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113"
A
Alex Crichton 已提交
3407
"checksum opener 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "176cd8eadff5ef9fa5c6d19452535662c02c6bf29b3d594a3fc01f749bb24c94"
3408
"checksum openssl 0.10.13 (registry+https://github.com/rust-lang/crates.io-index)" = "5af9e83eb3c51ee806387d26a43056f3246d865844caa6dd704d2ba7e831c264"
A
Alex Crichton 已提交
3409
"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
3410 3411
"checksum openssl-src 111.0.1+1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d1edaed888fd85a54a2646bf02992931ddefdda3b1a748fc79f088a8db27fcbe"
"checksum openssl-sys 0.9.38 (registry+https://github.com/rust-lang/crates.io-index)" = "ff3d1b390ab1b9700f682ad95a30dc9c0f40dd212ca57266012cfc678b0e365a"
3412
"checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
3413
"checksum ordslice 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd20eec3dbe4376829cb7d80ae6ac45e0a766831dca50202ff2d40db46a8a024"
3414
"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
N
Nick Cameron 已提交
3415
"checksum packed_simd 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "25d36de864f7218ec5633572a800109bbe5a1cc8d9d95a967f3daf93ea7e6ddc"
M
Mark Rousskov 已提交
3416
"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5"
3417
"checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa"
M
Mark Rousskov 已提交
3418
"checksum parking_lot_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06a2b6aae052309c2fd2161ef58f5067bc17bb758377a0de9d4b279d603fdd8a"
O
Oliver Schneider 已提交
3419
"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
A
Alex Crichton 已提交
3420
"checksum pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0fce5d8b5cc33983fc74f78ad552b5522ab41442c4ca91606e4236eb4b5ceefc"
3421
"checksum pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3294f437119209b084c797604295f40227cffa35c57220b1e99a6ff3bf8ee4"
3422
"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
A
Alex Crichton 已提交
3423 3424 3425 3426
"checksum phf 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "7d37a244c75a9748e049225155f56dbcb98fe71b192fd25fd23cb914b5ad62f2"
"checksum phf_codegen 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "4e4048fe7dd7a06b8127ecd6d3803149126e9b33c7558879846da3a63f734f2b"
"checksum phf_generator 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "05a079dd052e7b674d21cb31cbb6c05efd56a2cd2827db7692e2f1a507ebd998"
"checksum phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "c2261d544c2bb6aa3b10022b0be371b9c7c64f762ef28c6f5d4f1ef6d97b5930"
3427
"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c"
3428
"checksum polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b6b0a7f5f4278b991ffd14abce1d01b013121ad297460237ef0a2f08d43201"
S
steveklabnik 已提交
3429
"checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
M
Mark Simulacrum 已提交
3430
"checksum pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a029430f0d744bc3d15dd474d591bed2402b645d024583082b9f63bb936dac6"
E
Eric Huss 已提交
3431
"checksum pretty_env_logger 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ed8d1e63042e889b85228620629b51c011d380eed2c7e0015f8a644def280c28"
A
Alex Crichton 已提交
3432
"checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7"
N
Nick Cameron 已提交
3433
"checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09"
A
Alex Crichton 已提交
3434
"checksum proptest 0.8.7 (registry+https://github.com/rust-lang/crates.io-index)" = "926d0604475349f463fe44130aae73f2294b5309ab2ca0310b998bd334ef191f"
M
Manish Goregaokar 已提交
3435
"checksum pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d6fdf85cda6cadfae5428a54661d431330b312bc767ddbc57adbedc24da66e32"
3436
"checksum pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eef52fac62d0ea7b9b4dc7da092aa64ea7ec3d90af6679422d3d7e0e14b6ee15"
A
Alex Crichton 已提交
3437
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
O
Oliver Schneider 已提交
3438
"checksum quine-mc_cluskey 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45"
3439
"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
A
Alex Crichton 已提交
3440
"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8"
A
Alex Crichton 已提交
3441
"checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5"
N
Nick Cameron 已提交
3442
"checksum racer 2.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "344a53b68d889ab5f44d0617f2bbe1f696abe6a730bd41fa619cfc6fa83a6078"
A
Alex Crichton 已提交
3443
"checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd"
3444
"checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c"
K
kennytm 已提交
3445
"checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2"
A
Alex Crichton 已提交
3446
"checksum rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80e811e76f1dbf68abf87a759083d34600017fc4e10b6bd5ad84a700f9dba4b1"
N
Nick Cameron 已提交
3447
"checksum rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d24ad214285a7729b174ed6d3bcfcb80177807f959d95fafd5bfc5c4f201ac8"
A
Alex Crichton 已提交
3448
"checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1"
O
Oliver Schneider 已提交
3449
"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
A
Alex Crichton 已提交
3450
"checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
A
Alex Crichton 已提交
3451
"checksum regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "67d0301b0c6804eca7e3c275119d0b01ff3b7ab9258a65709e608a66312a1025"
A
Alex Crichton 已提交
3452
"checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"
A
Alex Crichton 已提交
3453
"checksum regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d"
A
Alex Crichton 已提交
3454
"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
N
Nick Cameron 已提交
3455
"checksum rls-analysis 0.16.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2de1187cceaf16d7642cc78835a2890b55b35ed9e8a8e3c6348a6297d8dd0fb1"
N
Nick Cameron 已提交
3456
"checksum rls-blacklist 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ce1fdac03e138c4617ff87b194e1ff57a39bb985a044ccbd8673d30701e411"
N
Nick Cameron 已提交
3457
"checksum rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a209ce46bb52813cbe0786a7baadc0c1a3f5543ef93f179eda3b841ed72cf2e"
N
Nick Cameron 已提交
3458
"checksum rls-rustc 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9dba7390427aefa953608429701e3665192ca810ba8ae09301e001b7c7bed0"
3459
"checksum rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d7c7046dc6a92f2ae02ed302746db4382e75131b9ce20ce967259f6b5867a6a"
N
Nick Cameron 已提交
3460 3461 3462 3463 3464 3465 3466 3467 3468 3469
"checksum rls-vfs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "72d56425bd5aa86d9d4372b76f0381d3b4bda9c0220e71956c9fcc929f45c1f1"
"checksum rustc-ap-arena 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b69fd4a0e8a3ecd99b497965d05f6f04dd2e4601a6146a841dbe4c8e77c2b30c"
"checksum rustc-ap-graphviz 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8136418dbc491bab74aa0565eaa2086754a7a81a5e74a1d84d6168d18e889e7"
"checksum rustc-ap-rustc_cratesio_shim 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a972feda82332d1d05b1ba5a097e915cd9c9c8f1af2bd7b08af09fb88c753d5f"
"checksum rustc-ap-rustc_data_structures 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "582584c6c48b0ece4b8aef3f9bb59d94d17c5665612bc87a71f509e45a3113b5"
"checksum rustc-ap-rustc_errors 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cd852096944d0ac6af1aefa9639a2ae6dede217606ce97f88ff0dcc8c86d6ff6"
"checksum rustc-ap-rustc_target 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98301a272ecfeec29d2d4e97b07238707c2b89d86fc3a4a5f31a00728f14e288"
"checksum rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c8f13510e617e2e322e3297038fd6a7346f2297124af9e10e33a627c5d544e9d"
"checksum rustc-ap-syntax 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0792f5a9ccfc5ec13bb5b0472fa49e145481029c39f6bf5b1a36decc99c3328f"
"checksum rustc-ap-syntax_pos 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0df9f97f41650d23b14f92f7267f8c61089655efb4533d82bf8991f99245198d"
A
Alex Crichton 已提交
3470
"checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395"
3471
"checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8"
J
John Kåre Alsaker 已提交
3472 3473
"checksum rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c6d5a683c6ba4ed37959097e88d71c9e8e26659a3cb5be8b389078e7ad45306"
"checksum rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40f06724db71e18d68b3b946fdf890ca8c921d9edccc1404fdfdb537b0d12649"
3474
"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
3475
"checksum rustc_version 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a54aa04a10c68c1c4eacb4337fd883b435997ede17a9385784b990777686b09a"
A
Alex Crichton 已提交
3476
"checksum rustfix 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "756567f00f7d89c9f89a5c401b8b1caaa122e27240b9eaadd0bb52ee0b680b1b"
A
Alex Crichton 已提交
3477
"checksum rusty-fork 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9591f190d2852720b679c21f66ad929f9f1d7bb09d1193c26167586029d8489c"
A
Alex Crichton 已提交
3478 3479
"checksum ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7153dd96dade874ab973e098cb62fcdbb89a03682e46b144fd09550998d4a4a7"
"checksum same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "10f7794e2fda7f594866840e95f5c5962e886e228e68b6505885811a94dd728c"
3480
"checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56"
A
Alex Crichton 已提交
3481
"checksum scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28"
O
Oliver Schneider 已提交
3482
"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
3483
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
3484
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
A
Alex Crichton 已提交
3485
"checksum serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)" = "22d340507cea0b7e6632900a176101fea959c7065d93ba555072da90aaaafc87"
3486
"checksum serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "225de307c6302bec3898c51ca302fc94a7a1697ef0845fcee6448f33c032249c"
3487
"checksum serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "190e9765dcedb56be63b6e0993a006c7e3b071a016a304736e4a315dc01fb142"
A
Alex Crichton 已提交
3488
"checksum serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "bb47a3d5c84320222f66d7db21157c4a7407755de41798f9b4c1c40593397b1a"
A
Alex Crichton 已提交
3489
"checksum shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
S
steveklabnik 已提交
3490
"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
S
steveklabnik 已提交
3491
"checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
3492
"checksum smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d"
3493
"checksum socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7"
A
Alex Crichton 已提交
3494 3495 3496
"checksum stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa"
"checksum string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423"
"checksum string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "35293b05cf1494e8ddd042a7df6756bf18d07f42d234f32e71dce8a7aabb0191"
S
steveklabnik 已提交
3497
"checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
A
Aleksey Kladov 已提交
3498
"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
3499 3500
"checksum strum 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f6c3a2071519ab6a48f465808c4c1ffdd00dfc8e93111d02b4fc5abab177676e"
"checksum strum_macros 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8baacebd7b7c9b864d83a6ba7a246232983e277b86fa5cdec77f565715a4b136"
3501
"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
N
Nick Cameron 已提交
3502
"checksum syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)" = "816b7af21405b011a23554ea2dc3f6576dc86ca557047c34098c1d741f10f823"
3503
"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
3504
"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
A
Alex Crichton 已提交
3505
"checksum tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "69e16840a1e0a1f1a880b739ef1cc6a4b85496c99b8aa786ccffce6e0c15624c"
A
Alex Crichton 已提交
3506
"checksum tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c4b103c6d08d323b92ff42c8ce62abcd83ca8efa7fd5bf7927efefec75f58c76"
S
steveklabnik 已提交
3507
"checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
A
Alan Du 已提交
3508
"checksum term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6b677dd1e8214ea1ef4297f85dbcbed8e8cdddb561040cc998ca2551c37561"
A
Alex Crichton 已提交
3509
"checksum termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3390f44f1f706d8870297b6a2c4f92d9ab65a37c265fbbc6ac4ee72bcc2f3698"
O
Oliver Schneider 已提交
3510
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
A
Alex Crichton 已提交
3511
"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
A
Alex Crichton 已提交
3512
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
A
Alex Crichton 已提交
3513
"checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
A
Alex Crichton 已提交
3514
"checksum toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a0263c6c02c4db6c8f7681f9fd35e90de799ebd4cfdeab77a38f4ff6b3d8c0d9"
S
steveklabnik 已提交
3515
"checksum toml-query 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6854664bfc6df0360c695480836ee90e2d0c965f06db291d10be9344792d43e8"
E
Eric Huss 已提交
3516
"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
A
Alex Crichton 已提交
3517
"checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d"
S
steveklabnik 已提交
3518
"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
A
Alex Crichton 已提交
3519 3520
"checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25"
"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1"
M
Mark Simulacrum 已提交
3521
"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
3522
"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
A
Alex Crichton 已提交
3523
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
N
Nick Cameron 已提交
3524
"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
A
Alex Crichton 已提交
3525
"checksum url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6"
3526
"checksum url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "74e7d099f1ee52f823d4bdd60c93c3602043c728f5db3b97bdb548467f7bddea"
S
steveklabnik 已提交
3527
"checksum utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c"
A
Alex Crichton 已提交
3528 3529
"checksum utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd70f467df6810094968e2fce0ee1bd0e87157aceb026a8c083bcf5e25b9efe4"
"checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d"
A
Alex Crichton 已提交
3530
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
R
Ralf Jung 已提交
3531
"checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba"
3532
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
S
Steve Klabnik 已提交
3533
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
A
Alex Crichton 已提交
3534
"checksum wait-timeout 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b9f3bf741a801531993db6478b95682117471f76916f5e690dd8d45395b09349"
A
Alex Crichton 已提交
3535
"checksum walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "af464bc7be7b785c7ac72e266a6b67c4c9070155606f51655a650a6686204e35"
3536
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
3537
"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
3538
"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
3539
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
A
Alex Crichton 已提交
3540
"checksum winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab"
3541
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
A
Alex Crichton 已提交
3542
"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
A
Alex Crichton 已提交
3543
"checksum xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
A
Alex Crichton 已提交
3544
"checksum xz2 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "df8bf41d3030c3577c9458fd6640a05afbf43b150d0b531b16bd77d3f794f27a"
3545
"checksum yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"