Cargo.lock 177.7 KB
Newer Older
1 2 3 4 5
[[package]]
name = "adler32"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

6 7
[[package]]
name = "aho-corasick"
8
version = "0.6.9"
9 10
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
11
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
12 13
]

14 15 16 17
[[package]]
name = "alloc"
version = "0.0.0"
dependencies = [
18
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
19
 "core 0.0.0",
20
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
21
 "rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
22 23
]

S
steveklabnik 已提交
24 25 26 27 28
[[package]]
name = "ammonia"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
29
 "html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
30
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
31
 "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
32
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
33
 "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
34
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
35 36
]

37 38
[[package]]
name = "ansi_term"
A
Aleksey Kladov 已提交
39
version = "0.11.0"
40
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Aleksey Kladov 已提交
41
dependencies = [
42
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
43
]
44

45 46 47 48 49
[[package]]
name = "arc-swap"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"

50 51 52
[[package]]
name = "arena"
version = "0.0.0"
J
John Kåre Alsaker 已提交
53 54 55
dependencies = [
 "rustc_data_structures 0.0.0",
]
56

N
Nick Cameron 已提交
57 58 59 60 61 62 63 64
[[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 已提交
65 66
[[package]]
name = "assert_cli"
A
Alex Crichton 已提交
67
version = "0.6.2"
N
Nick Cameron 已提交
68 69 70
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 已提交
71
 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
72
 "environment 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
73
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
74
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
75
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
76 77
]

78 79
[[package]]
name = "atty"
R
Ralf Jung 已提交
80
version = "0.2.11"
81 82
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
83
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
84
 "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
85
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
86 87
]

88 89
[[package]]
name = "backtrace"
90
version = "0.3.11"
91 92
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
93
 "backtrace-sys 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
94
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
95
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
96
 "rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
97
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
98 99 100 101
]

[[package]]
name = "backtrace-sys"
102
version = "0.1.27"
103 104
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
105
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
106
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
107
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
108
 "rustc-std-workspace-core 1.0.0",
109 110
]

A
Alex Crichton 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123
[[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 已提交
124 125 126 127 128
[[package]]
name = "bitflags"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

129 130
[[package]]
name = "bitflags"
A
Alex Crichton 已提交
131
version = "1.0.4"
132 133
source = "registry+https://github.com/rust-lang/crates.io-index"

134 135 136 137 138
[[package]]
name = "bootstrap"
version = "0.0.0"
dependencies = [
 "build_helper 0.1.0",
139
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
140
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
141
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
142
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
143
 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
144
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
145
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
146
 "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
147
 "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
148
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
149 150
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
151
 "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
152
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
153 154
]

155 156
[[package]]
name = "bufstream"
157
version = "0.1.4"
158 159
source = "registry+https://github.com/rust-lang/crates.io-index"

160 161 162 163
[[package]]
name = "build-manifest"
version = "0.1.0"
dependencies = [
E
Eric Huss 已提交
164
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
165 166
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
167 168
]

169 170 171 172 173
[[package]]
name = "build_const"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

174 175 176 177
[[package]]
name = "build_helper"
version = "0.1.0"

178 179
[[package]]
name = "bytecount"
N
Nick Cameron 已提交
180
version = "0.4.0"
181 182
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
183
 "packed_simd 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
184 185
]

186 187
[[package]]
name = "byteorder"
188
version = "1.2.7"
189 190
source = "registry+https://github.com/rust-lang/crates.io-index"

191 192 193 194 195 196 197 198 199
[[package]]
name = "bytes"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
200 201 202 203 204
[[package]]
name = "bytesize"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

205 206
[[package]]
name = "cargo"
207
version = "0.34.0"
208
dependencies = [
R
Ralf Jung 已提交
209
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
210
 "bufstream 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
211
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
212
 "bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
213
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
214 215 216
 "core-foundation 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "crates-io 0.22.0",
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
217
 "crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
218 219
 "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 已提交
220
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
221
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
222 223
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
224
 "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
225
 "fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
226 227
 "git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "git2-curl 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
228
 "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
229
 "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
230
 "home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
231
 "ignore 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
232
 "im-rc 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
233
 "jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
234
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
235
 "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
236
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
237
 "libgit2-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)",
238
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
239
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
240
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
241
 "opener 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
242
 "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)",
243
 "pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
244
 "proptest 0.8.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
245
 "rustc-workspace-hack 1.0.0",
E
Eric Huss 已提交
246
 "rustfix 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
247
 "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
248
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
249
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
250
 "serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
251
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
252
 "shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
253 254 255 256
 "tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
257
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
258
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
259
 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
260
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
261 262
]

R
Ralf Jung 已提交
263 264
[[package]]
name = "cargo_metadata"
265
version = "0.6.2"
R
Ralf Jung 已提交
266 267 268 269
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)",
E
Eric Huss 已提交
270
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
271 272
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
273 274
]

A
Alex Crichton 已提交
275 276 277 278
[[package]]
name = "cargotest2"
version = "0.1.0"

N
Nick Cameron 已提交
279 280
[[package]]
name = "cc"
281
version = "1.0.28"
N
Nick Cameron 已提交
282 283
source = "registry+https://github.com/rust-lang/crates.io-index"

284 285
[[package]]
name = "cfg-if"
286
version = "0.1.6"
287 288
source = "registry+https://github.com/rust-lang/crates.io-index"

289 290
[[package]]
name = "chalk-engine"
S
scalexm 已提交
291
version = "0.9.0"
292 293 294
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)",
295
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
296 297 298 299 300 301 302 303 304 305
]

[[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 已提交
306 307
[[package]]
name = "chrono"
308
version = "0.4.6"
A
Alex Crichton 已提交
309 310
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
311
 "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
312
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
313
 "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
314 315
]

316 317
[[package]]
name = "clap"
A
Alex Crichton 已提交
318
version = "2.32.0"
319 320
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Aleksey Kladov 已提交
321
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
322
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
323
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
324
 "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
325
 "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
326
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
327
 "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
328
 "yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
329 330
]

O
Oliver Schneider 已提交
331 332
[[package]]
name = "clippy"
O
Oliver Schneider 已提交
333
version = "0.0.212"
O
Oliver Schneider 已提交
334
dependencies = [
335
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
336
 "clippy-mini-macro-test 0.2.0",
M
Matthias Krüger 已提交
337
 "clippy_dev 0.0.1",
O
Oliver Schneider 已提交
338
 "clippy_lints 0.0.212",
339
 "compiletest_rs 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
340
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
341
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
342
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
343
 "rustc-workspace-hack 1.0.0",
H
Hugues de Valon 已提交
344
 "rustc_tools_util 0.1.1",
345
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
346
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
347
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
348 349 350 351
]

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

M
Matthias Krüger 已提交
354 355 356 357 358 359
[[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)",
I
Igor Matuszewski 已提交
360
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
361 362
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matthias Krüger 已提交
363 364
]

O
Oliver Schneider 已提交
365 366
[[package]]
name = "clippy_lints"
O
Oliver Schneider 已提交
367
version = "0.0.212"
368
dependencies = [
369
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
370
 "if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
371
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
372
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
373
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
374
 "pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
375
 "quine-mc_cluskey 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
376
 "regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
377
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
378
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
379
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
380
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
381
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
382
 "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
383
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
384 385
]

K
kennytm 已提交
386 387 388 389 390
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
391
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
392 393
]

394 395
[[package]]
name = "cmake"
A
Alex Crichton 已提交
396
version = "0.1.33"
397 398
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
399
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
400 401
]

N
Nick Cameron 已提交
402 403 404 405 406 407 408 409
[[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 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422
[[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 = [
423
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
424 425
]

426 427
[[package]]
name = "compiler_builtins"
428
version = "0.1.4"
429
source = "registry+https://github.com/rust-lang/crates.io-index"
430
dependencies = [
431
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
432
 "rustc-std-workspace-core 1.0.0",
433 434
]

435 436 437 438
[[package]]
name = "compiletest"
version = "0.0.0"
dependencies = [
O
Oliver Schneider 已提交
439
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
440 441
 "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
442
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
443
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
444
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
445
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
446
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
447
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
448 449
 "rustfix 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
450 451
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
V
Vytautas Astrauskas 已提交
452
 "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
453
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
454 455
]

N
Nick Cameron 已提交
456
[[package]]
O
Oliver Schneider 已提交
457
name = "compiletest_rs"
458
version = "0.3.18"
459 460
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
O
Oliver Schneider 已提交
461
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
462
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
463
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
464
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
465
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
466
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
467
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
468
 "rustfix 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
469
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
470 471 472
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
473
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
474 475
]

476 477 478
[[package]]
name = "core"
version = "0.0.0"
A
Alex Crichton 已提交
479
dependencies = [
480
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
481
]
482

N
Nick Cameron 已提交
483 484
[[package]]
name = "core-foundation"
485
version = "0.6.3"
N
Nick Cameron 已提交
486 487
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
488
 "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
489
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
490 491 492 493
]

[[package]]
name = "core-foundation-sys"
494
version = "0.6.2"
N
Nick Cameron 已提交
495 496
source = "registry+https://github.com/rust-lang/crates.io-index"

497 498
[[package]]
name = "crates-io"
499
version = "0.22.0"
500
dependencies = [
A
Alex Crichton 已提交
501
 "curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
502
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
503
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
504 505 506
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
507 508
]

509
[[package]]
510 511
name = "crc"
version = "1.8.1"
512
source = "registry+https://github.com/rust-lang/crates.io-index"
513 514 515 516 517 518 519 520 521 522 523
dependencies = [
 "build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "crc32fast"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
524

K
kennytm 已提交
525 526
[[package]]
name = "crossbeam-channel"
N
Nick Cameron 已提交
527
version = "0.2.6"
K
kennytm 已提交
528 529
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
530 531 532
 "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)",
533
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
534
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
535 536
]

537 538 539 540 541 542 543 544 545 546 547 548
[[package]]
name = "crossbeam-channel"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
549 550 551 552 553
[[package]]
name = "crossbeam-deque"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
554
 "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
555 556 557
 "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

558 559 560 561 562 563 564 565 566
[[package]]
name = "crossbeam-deque"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
567 568
[[package]]
name = "crossbeam-epoch"
A
Alex Crichton 已提交
569
version = "0.3.1"
N
Nick Cameron 已提交
570 571 572
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
573
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
574
 "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
575
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
576 577 578 579 580
 "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 已提交
581 582
[[package]]
name = "crossbeam-epoch"
N
Nick Cameron 已提交
583
version = "0.6.0"
K
kennytm 已提交
584 585 586
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
587
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
588
 "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
589
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
590 591 592 593
 "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)",
]

594 595 596 597 598 599 600 601 602 603 604 605 606
[[package]]
name = "crossbeam-epoch"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "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 已提交
607 608 609 610 611
[[package]]
name = "crossbeam-utils"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
612
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
613 614
]

A
Alex Crichton 已提交
615 616 617 618 619
[[package]]
name = "crossbeam-utils"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
620 621
[[package]]
name = "crossbeam-utils"
622
version = "0.6.2"
A
Alex Crichton 已提交
623 624
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
625
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
626 627
]

O
Oliver Schneider 已提交
628 629
[[package]]
name = "crypto-hash"
A
Alex Crichton 已提交
630
version = "0.3.1"
O
Oliver Schneider 已提交
631 632 633
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 已提交
634
 "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
635
 "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)",
636
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
637 638
]

639 640
[[package]]
name = "curl"
A
Alex Crichton 已提交
641
version = "0.4.19"
642 643
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
644
 "curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)",
645
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
646
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
647
 "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
648
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
649 650
 "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)",
651 652 653 654 655
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "curl-sys"
A
Alex Crichton 已提交
656
version = "0.4.15"
657 658
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
659
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
660
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
661 662
 "libnghttp2-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
663
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
664
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
665
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
666
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
667 668
]

D
Douglas Campos 已提交
669 670
[[package]]
name = "datafrog"
N
Niko Matsakis 已提交
671
version = "2.0.1"
D
Douglas Campos 已提交
672 673
source = "registry+https://github.com/rust-lang/crates.io-index"

674 675
[[package]]
name = "derive-new"
676
version = "0.5.6"
677 678
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
679
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
680 681
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
682 683
]

K
kennytm 已提交
684 685
[[package]]
name = "derive_more"
N
Nick Cameron 已提交
686
version = "0.13.0"
K
kennytm 已提交
687 688
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
689
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
690 691 692
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
693 694
]

695 696
[[package]]
name = "diff"
O
Oliver Schneider 已提交
697
version = "0.1.11"
698 699
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Mark Simulacrum 已提交
700 701 702 703 704
[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

R
Ralf Jung 已提交
705 706 707 708 709
[[package]]
name = "directories"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
710
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
711 712 713
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

O
Oliver Schneider 已提交
714 715
[[package]]
name = "dlmalloc"
716 717
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
O
Oliver Schneider 已提交
718
dependencies = [
719
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
720
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
721
 "rustc-std-workspace-core 1.0.0",
O
Oliver Schneider 已提交
722 723 724 725
]

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

S
steveklabnik 已提交
729 730
[[package]]
name = "elasticlunr-rs"
731
version = "2.3.4"
S
steveklabnik 已提交
732 733
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
734
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
735
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
736
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
737 738
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
739 740
 "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 已提交
741 742
]

743 744
[[package]]
name = "ena"
N
Nicholas Nethercote 已提交
745
version = "0.11.0"
746 747
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
748
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
749 750
]

A
Alex Crichton 已提交
751 752
[[package]]
name = "env_logger"
753
version = "0.5.13"
A
Alex Crichton 已提交
754 755
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
R
Ralf Jung 已提交
756
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
757 758 759 760
 "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
761 762
]

A
Alex Crichton 已提交
763 764 765 766 767 768
[[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)",
769 770 771 772
 "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
773 774
]

N
Nick Cameron 已提交
775 776 777 778 779
[[package]]
name = "environment"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

780 781
[[package]]
name = "error-chain"
782
version = "0.11.0"
G
Guillaume Gomez 已提交
783 784
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
785
 "backtrace 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
G
Guillaume Gomez 已提交
786 787
]

R
Ralf Jung 已提交
788 789 790 791 792
[[package]]
name = "error-chain"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
793
 "backtrace 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
794 795
]

796 797 798
[[package]]
name = "error_index_generator"
version = "0.0.0"
M
Mark Simulacrum 已提交
799 800 801
dependencies = [
 "rustdoc 0.0.0",
]
802

A
Alex Crichton 已提交
803 804
[[package]]
name = "failure"
I
Igor Matuszewski 已提交
805
version = "0.1.3"
A
Alex Crichton 已提交
806 807
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
808
 "backtrace 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
809
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
810 811 812 813
]

[[package]]
name = "failure_derive"
814
version = "0.1.3"
A
Alex Crichton 已提交
815 816
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
817
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
818 819
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
820
 "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
821 822
]

A
Alex Crichton 已提交
823 824
[[package]]
name = "filetime"
825
version = "0.2.4"
A
Alex Crichton 已提交
826 827
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
828
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
829
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
830
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
831 832
]

833 834 835 836 837
[[package]]
name = "fixedbitset"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"

F
Felix Schütt 已提交
838 839
[[package]]
name = "flate2"
840
version = "1.0.6"
F
Felix Schütt 已提交
841 842
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
843
 "crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
844
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
845 846 847
 "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
 "miniz-sys 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "miniz_oxide_c_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
F
Felix Schütt 已提交
848 849
]

850 851 852 853
[[package]]
name = "fmt_macros"
version = "0.0.0"

854 855
[[package]]
name = "fnv"
O
Oliver Schneider 已提交
856
version = "1.0.6"
857 858
source = "registry+https://github.com/rust-lang/crates.io-index"

859 860
[[package]]
name = "foreign-types"
O
Oliver Schneider 已提交
861 862 863 864 865 866 867 868 869
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"
870 871
source = "registry+https://github.com/rust-lang/crates.io-index"

872 873
[[package]]
name = "fortanix-sgx-abi"
874
version = "0.3.2"
875
source = "registry+https://github.com/rust-lang/crates.io-index"
876
dependencies = [
877
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
878
 "rustc-std-workspace-core 1.0.0",
879 880
]

881 882
[[package]]
name = "fs2"
883
version = "0.4.3"
884 885
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
886
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
887
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
888 889
]

890 891 892 893 894
[[package]]
name = "fs_extra"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

895 896 897 898 899
[[package]]
name = "fst"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
900
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
901 902
]

O
Oliver Schneider 已提交
903 904
[[package]]
name = "fuchsia-zircon"
905
version = "0.3.3"
O
Oliver Schneider 已提交
906 907
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
908
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
909
 "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
910 911 912 913
]

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

S
steveklabnik 已提交
917 918
[[package]]
name = "futf"
A
Alex Crichton 已提交
919
version = "0.1.4"
S
steveklabnik 已提交
920 921 922
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 已提交
923
 "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
924 925
]

926 927
[[package]]
name = "futures"
A
Alex Crichton 已提交
928
version = "0.1.21"
929 930
source = "registry+https://github.com/rust-lang/crates.io-index"

E
Eric Huss 已提交
931 932 933 934 935
[[package]]
name = "fwdansi"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
936 937
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
938 939
]

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

945 946
[[package]]
name = "git2"
H
Hugues de Valon 已提交
947
version = "0.8.0"
948 949
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
950
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
951
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
952
 "libgit2-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)",
953
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
954
 "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
955
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
956
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
957 958 959 960
]

[[package]]
name = "git2-curl"
H
Hugues de Valon 已提交
961
version = "0.9.0"
962 963
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
964
 "curl 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
965
 "git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
966 967
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
968 969 970 971 972 973 974
]

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

975 976
[[package]]
name = "globset"
977
version = "0.4.2"
978 979
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
980
 "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
981
 "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
982 983 984
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
985 986
]

987 988 989 990
[[package]]
name = "graphviz"
version = "0.0.0"

991 992
[[package]]
name = "handlebars"
A
Alex Crichton 已提交
993
version = "0.32.4"
994 995
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
996
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
997
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
998
 "pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
999
 "pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1000
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1001
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1002
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
1003
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
1004 1005
]

1006 1007 1008 1009 1010 1011 1012 1013
[[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)",
]

1014 1015
[[package]]
name = "hex"
A
Alex Crichton 已提交
1016
version = "0.3.2"
1017 1018
source = "registry+https://github.com/rust-lang/crates.io-index"

1019 1020
[[package]]
name = "home"
A
Alex Crichton 已提交
1021
version = "0.3.3"
1022 1023
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Bastien Orivel 已提交
1024
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
1025
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1026 1027
]

S
steveklabnik 已提交
1028 1029
[[package]]
name = "html5ever"
1030
version = "0.22.5"
S
steveklabnik 已提交
1031 1032
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1033
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1034 1035
 "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)",
1036
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
1037 1038
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1039 1040
]

A
Alex Crichton 已提交
1041 1042
[[package]]
name = "humantime"
1043
version = "1.2.0"
A
Alex Crichton 已提交
1044 1045
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1046
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1047 1048
]

1049 1050
[[package]]
name = "idna"
A
Alex Crichton 已提交
1051
version = "0.1.5"
1052 1053
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1054
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1055
 "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1056
 "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1057 1058
]

O
Oliver Schneider 已提交
1059 1060
[[package]]
name = "if_chain"
M
Manish Goregaokar 已提交
1061
version = "0.1.3"
O
Oliver Schneider 已提交
1062 1063
source = "registry+https://github.com/rust-lang/crates.io-index"

1064 1065
[[package]]
name = "ignore"
1066
version = "0.4.4"
1067 1068
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1069 1070
 "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1071
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1072 1073 1074 1075
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1076
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1077 1078
 "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
1079 1080
]

E
Eric Huss 已提交
1081 1082 1083 1084 1085
[[package]]
name = "im-rc"
version = "12.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1086
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1087 1088 1089
 "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1090 1091 1092 1093
[[package]]
name = "installer"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
1094
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tom Tromey 已提交
1095
 "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
1096
 "flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1097
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1098
 "rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1099 1100
 "tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
 "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
1101
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1102
 "xz2 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1103 1104
]

1105 1106 1107 1108 1109 1110 1111 1112 1113
[[package]]
name = "iovec"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

S
steveklabnik 已提交
1114 1115 1116 1117 1118 1119 1120
[[package]]
name = "is-match"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "itertools"
A
Alex Crichton 已提交
1121
version = "0.7.8"
S
steveklabnik 已提交
1122 1123
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1124
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1125 1126
]

1127 1128 1129 1130 1131 1132 1133 1134
[[package]]
name = "itertools"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1135
[[package]]
A
Alex Crichton 已提交
1136
name = "itoa"
A
Alex Crichton 已提交
1137
version = "0.4.3"
1138 1139
source = "registry+https://github.com/rust-lang/crates.io-index"

1140 1141 1142 1143 1144
[[package]]
name = "jemalloc-sys"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1145
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1146
 "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1147
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1148 1149
]

S
Steve Klabnik 已提交
1150
[[package]]
A
Alex Crichton 已提交
1151
name = "jobserver"
1152
version = "0.1.12"
S
Steve Klabnik 已提交
1153
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1154
dependencies = [
1155
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1156 1157
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1158
]
S
Steve Klabnik 已提交
1159

1160 1161 1162 1163 1164
[[package]]
name = "json"
version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"

1165 1166
[[package]]
name = "jsonrpc-core"
H
Hugues de Valon 已提交
1167
version = "9.0.0"
1168 1169
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1170
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
1171
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1172
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
1173 1174
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
1175 1176
]

1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
[[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)",
]

[[package]]
name = "lazy_static"
O
Oliver Schneider 已提交
1188 1189 1190
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1191 1192
[[package]]
name = "lazy_static"
I
Igor Matuszewski 已提交
1193
version = "1.2.0"
A
Alex Crichton 已提交
1194 1195
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1196 1197
[[package]]
name = "lazycell"
1198
version = "1.2.1"
A
Alex Crichton 已提交
1199 1200
source = "registry+https://github.com/rust-lang/crates.io-index"

1201 1202
[[package]]
name = "libc"
1203
version = "0.2.46"
1204
source = "registry+https://github.com/rust-lang/crates.io-index"
1205 1206 1207
dependencies = [
 "rustc-std-workspace-core 1.0.0",
]
1208

1209 1210
[[package]]
name = "libgit2-sys"
E
Eric Huss 已提交
1211
version = "0.7.11"
1212 1213
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1214
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1215
 "curl-sys 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)",
1216
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1217
 "libssh2-sys 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
1218
 "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
1219
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
1220
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
1221 1222
]

A
Alex Crichton 已提交
1223 1224
[[package]]
name = "libnghttp2-sys"
1225
version = "0.1.1"
A
Alex Crichton 已提交
1226 1227
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1228
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1229
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1230 1231
]

1232 1233
[[package]]
name = "libssh2-sys"
1234
version = "0.2.11"
1235 1236
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1237
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1238
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1239
 "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
1240
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
1241
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1242
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1243 1244 1245 1246
]

[[package]]
name = "libz-sys"
1247
version = "1.0.25"
1248 1249
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1250
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1251
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1252
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1253
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1254 1255
]

1256 1257 1258 1259
[[package]]
name = "linkchecker"
version = "0.1.0"

M
Mark Rousskov 已提交
1260 1261 1262 1263 1264 1265 1266 1267 1268
[[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)",
]

1269 1270
[[package]]
name = "log"
1271
version = "0.4.6"
1272
source = "registry+https://github.com/rust-lang/crates.io-index"
1273
dependencies = [
1274
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
1275
]
1276

1277 1278
[[package]]
name = "log_settings"
A
Alex Crichton 已提交
1279
version = "0.1.2"
1280 1281
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
1282
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1283 1284
]

1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
[[package]]
name = "lsp-codec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "lsp-types"
version = "0.54.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)",
 "num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1310 1311
[[package]]
name = "lzma-sys"
B
Bastien Orivel 已提交
1312
version = "0.1.10"
1313 1314
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1315
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1316
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
1317
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1318
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
1319 1320
]

S
steveklabnik 已提交
1321 1322 1323 1324 1325
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

G
Guillaume Gomez 已提交
1326 1327 1328 1329 1330
[[package]]
name = "macro-utils"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
[[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 已提交
1341 1342
 "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)",
E
Eric Huss 已提交
1343
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
1344 1345
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1346 1347
 "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 已提交
1348 1349 1350
 "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

1351 1352
[[package]]
name = "matches"
A
Alex Crichton 已提交
1353
version = "0.1.8"
1354 1355
source = "registry+https://github.com/rust-lang/crates.io-index"

1356 1357
[[package]]
name = "mdbook"
M
Matt Ickstadt 已提交
1358
version = "0.1.7"
1359 1360
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
S
steveklabnik 已提交
1361
 "ammonia 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1362
 "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1363
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
1364
 "elasticlunr-rs 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
1365
 "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1366
 "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1367
 "handlebars 0.32.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1368
 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1369
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1370 1371
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1372
 "open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
1373
 "pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1374
 "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1375
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
1376 1377
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1378
 "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
1379 1380
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1381
 "toml-query 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1382 1383
]

O
Oliver Schneider 已提交
1384 1385
[[package]]
name = "memchr"
1386
version = "2.1.1"
O
Oliver Schneider 已提交
1387 1388
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1389
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
1390
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1391
 "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1392 1393
]

1394 1395 1396 1397 1398
[[package]]
name = "memmap"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1399
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1400
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1401 1402
]

N
Nick Cameron 已提交
1403 1404 1405 1406 1407
[[package]]
name = "memoffset"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

G
Guillaume Gomez 已提交
1408 1409
[[package]]
name = "minifier"
1410
version = "0.0.26"
G
Guillaume Gomez 已提交
1411 1412
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
G
Guillaume Gomez 已提交
1413
 "macro-utils 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
G
Guillaume Gomez 已提交
1414 1415
]

1416 1417
[[package]]
name = "miniz-sys"
1418 1419 1420
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1421
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1422
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
]

[[package]]
name = "miniz_oxide"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "miniz_oxide_c_api"
version = "0.2.0"
1436 1437
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1438
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1439
 "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
1440
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1441
 "miniz_oxide 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1442 1443
]

1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
[[package]]
name = "mio"
version = "0.6.16"
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)",
 "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "mio-named-pipes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "mio-uds"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
1494 1495
[[package]]
name = "miow"
A
Alex Crichton 已提交
1496
version = "0.3.3"
A
Alex Crichton 已提交
1497 1498
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1499 1500
 "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 已提交
1501 1502
]

1503 1504 1505 1506
[[package]]
name = "miri"
version = "0.1.0"
dependencies = [
1507
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
1508
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1509
 "colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1510
 "compiletest_rs 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1511
 "directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
1512
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1513
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
1514 1515
 "rustc-workspace-hack 1.0.0",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
1516
 "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
1517 1518
]

1519 1520 1521 1522 1523 1524 1525 1526 1527 1528
[[package]]
name = "net2"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (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 已提交
1529 1530 1531 1532 1533 1534 1535 1536
[[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 已提交
1537 1538 1539 1540 1541
[[package]]
name = "nodrop"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"

1542
[[package]]
O
Oliver Schneider 已提交
1543
name = "num-derive"
1544
version = "0.2.3"
1545 1546
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1547
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1548
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
1549 1550
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
1551 1552 1553
]

[[package]]
O
Oliver Schneider 已提交
1554 1555
name = "num-integer"
version = "0.1.39"
1556 1557
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1558
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1559 1560
]

S
Steve Klabnik 已提交
1561 1562
[[package]]
name = "num-traits"
1563
version = "0.2.6"
S
Steve Klabnik 已提交
1564 1565
source = "registry+https://github.com/rust-lang/crates.io-index"

1566 1567
[[package]]
name = "num_cpus"
1568
version = "1.8.0"
1569 1570
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1571
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1572 1573
]

S
Steve Klabnik 已提交
1574 1575
[[package]]
name = "open"
A
Alex Crichton 已提交
1576
version = "1.2.1"
S
Steve Klabnik 已提交
1577 1578
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1579 1580
[[package]]
name = "opener"
1581
version = "0.3.2"
A
Alex Crichton 已提交
1582 1583
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
1584
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
1585
 "failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
1586
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1587 1588
]

1589 1590
[[package]]
name = "openssl"
T
Tatsuyuki Ishi 已提交
1591
version = "0.10.16"
1592 1593
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1594
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
1595
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
1596
 "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1597
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1598
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
T
Tatsuyuki Ishi 已提交
1599
 "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
1600 1601 1602 1603
]

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

E
Eric Huss 已提交
1607 1608
[[package]]
name = "openssl-src"
1609
version = "111.1.0+1.1.1a"
E
Eric Huss 已提交
1610 1611
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1612
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1613 1614
]

1615 1616
[[package]]
name = "openssl-sys"
T
Tatsuyuki Ishi 已提交
1617
version = "0.9.40"
1618 1619
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1620
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1621
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1622
 "openssl-src 111.1.0+1.1.1a (registry+https://github.com/rust-lang/crates.io-index)",
1623
 "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1624
 "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1625 1626
]

1627 1628 1629 1630 1631
[[package]]
name = "ordermap"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

1632 1633 1634 1635 1636
[[package]]
name = "ordslice"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

1637 1638 1639 1640 1641
[[package]]
name = "owning_ref"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1642
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1643 1644
]

N
Nick Cameron 已提交
1645 1646 1647 1648 1649
[[package]]
name = "packed_simd"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1650
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1651 1652
]

1653 1654 1655 1656
[[package]]
name = "panic_abort"
version = "0.0.0"
dependencies = [
1657
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1658
 "core 0.0.0",
1659
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1660 1661 1662 1663 1664 1665 1666
]

[[package]]
name = "panic_unwind"
version = "0.0.0"
dependencies = [
 "alloc 0.0.0",
1667
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1668
 "core 0.0.0",
1669
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1670 1671 1672
 "unwind 0.0.0",
]

M
Mark Rousskov 已提交
1673 1674 1675 1676 1677 1678 1679 1680 1681
[[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)",
]

1682 1683 1684 1685 1686 1687 1688 1689 1690
[[package]]
name = "parking_lot"
version = "0.7.1"
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.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

M
Mark Rousskov 已提交
1691 1692 1693 1694 1695
[[package]]
name = "parking_lot_core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1696
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1697
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1698
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
1699
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
1700 1701
]

1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
[[package]]
name = "parking_lot_core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

1714 1715
[[package]]
name = "percent-encoding"
O
Oliver Schneider 已提交
1716
version = "1.0.1"
1717 1718
source = "registry+https://github.com/rust-lang/crates.io-index"

1719 1720
[[package]]
name = "pest"
A
Alex Crichton 已提交
1721
version = "1.0.6"
1722 1723
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
1724 1725
[[package]]
name = "pest_derive"
1726
version = "1.0.8"
A
Alex Crichton 已提交
1727 1728 1729 1730 1731 1732 1733
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)",
]

1734 1735
[[package]]
name = "petgraph"
1736
version = "0.4.13"
1737 1738 1739 1740 1741 1742
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 已提交
1743 1744
[[package]]
name = "phf"
A
Alex Crichton 已提交
1745
version = "0.7.22"
S
steveklabnik 已提交
1746 1747
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1748
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1749 1750 1751 1752
]

[[package]]
name = "phf_codegen"
A
Alex Crichton 已提交
1753
version = "0.7.22"
S
steveklabnik 已提交
1754 1755
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1756 1757
 "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 已提交
1758 1759 1760 1761
]

[[package]]
name = "phf_generator"
A
Alex Crichton 已提交
1762
version = "0.7.22"
S
steveklabnik 已提交
1763 1764
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1765
 "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1766
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
1767 1768 1769 1770
]

[[package]]
name = "phf_shared"
A
Alex Crichton 已提交
1771
version = "0.7.22"
S
steveklabnik 已提交
1772 1773 1774 1775 1776
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

1777 1778
[[package]]
name = "pkg-config"
1779
version = "0.3.14"
1780 1781
source = "registry+https://github.com/rust-lang/crates.io-index"

1782 1783
[[package]]
name = "polonius-engine"
N
Niko Matsakis 已提交
1784
version = "0.6.2"
1785
source = "registry+https://github.com/rust-lang/crates.io-index"
D
Douglas Campos 已提交
1786
dependencies = [
N
Niko Matsakis 已提交
1787
 "datafrog 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1788
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
1789
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
D
Douglas Campos 已提交
1790
]
1791

S
steveklabnik 已提交
1792 1793 1794 1795 1796
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Mark Simulacrum 已提交
1797 1798 1799 1800 1801 1802 1803 1804 1805
[[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 已提交
1806 1807
[[package]]
name = "pretty_env_logger"
1808
version = "0.3.0"
E
Eric Huss 已提交
1809 1810
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1811 1812 1813
 "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
1814 1815
]

A
Alex Crichton 已提交
1816 1817
[[package]]
name = "proc-macro2"
A
Alex Crichton 已提交
1818 1819 1820 1821 1822 1823 1824 1825
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 已提交
1826
version = "0.4.24"
A
Alex Crichton 已提交
1827 1828 1829 1830 1831
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)",
]

1832 1833 1834 1835
[[package]]
name = "proc_macro"
version = "0.0.0"

1836 1837 1838 1839
[[package]]
name = "profiler_builtins"
version = "0.0.0"
dependencies = [
1840
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
1841
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1842
 "core 0.0.0",
1843 1844
]

A
Alex Crichton 已提交
1845 1846 1847 1848 1849 1850 1851
[[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)",
1852
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1853
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1854
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1855 1856
 "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)",
1857
 "regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1858
 "rusty-fork 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
1859
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1860 1861
]

O
Oliver Schneider 已提交
1862 1863
[[package]]
name = "pulldown-cmark"
M
Manish Goregaokar 已提交
1864
version = "0.1.2"
O
Oliver Schneider 已提交
1865 1866 1867
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 已提交
1868
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
1869 1870
]

1871 1872 1873 1874 1875 1876 1877 1878 1879
[[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)",
]

1880 1881
[[package]]
name = "quick-error"
A
Alex Crichton 已提交
1882
version = "1.2.2"
1883 1884 1885
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
O
Oliver Schneider 已提交
1886 1887
name = "quine-mc_cluskey"
version = "0.2.4"
1888 1889 1890 1891 1892 1893 1894
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 已提交
1895 1896
[[package]]
name = "quote"
A
Alex Crichton 已提交
1897
version = "0.5.2"
A
Alex Crichton 已提交
1898 1899
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
1900 1901 1902 1903 1904
 "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "quote"
1905
version = "0.6.10"
A
Alex Crichton 已提交
1906 1907
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
1908
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1909 1910
]

1911 1912
[[package]]
name = "racer"
I
Igor Matuszewski 已提交
1913
version = "2.1.16"
1914
source = "registry+https://github.com/rust-lang/crates.io-index"
1915
dependencies = [
A
Alex Crichton 已提交
1916
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
1917
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
1918
 "derive_more 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1919
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1920
 "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1921
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1922
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
1923
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
1924
 "rustc-ap-syntax 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
1925
]
1926

A
Alex Crichton 已提交
1927 1928
[[package]]
name = "rand"
A
Alex Crichton 已提交
1929
version = "0.4.3"
A
Alex Crichton 已提交
1930 1931 1932
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)",
1933
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1934
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
1935 1936
]

K
kennytm 已提交
1937 1938
[[package]]
name = "rand"
1939
version = "0.5.5"
K
kennytm 已提交
1940 1941 1942 1943
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)",
1944
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1945
 "rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1946
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
K
kennytm 已提交
1947 1948
]

1949 1950 1951 1952 1953 1954 1955
[[package]]
name = "rand"
version = "0.6.1"
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)",
1956
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
 "rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_chacha"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1972
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1973 1974 1975
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

K
kennytm 已提交
1976 1977
[[package]]
name = "rand_core"
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

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

[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
1994
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1995 1996 1997 1998 1999
]

[[package]]
name = "rand_isaac"
version = "0.1.1"
K
kennytm 已提交
2000
source = "registry+https://github.com/rust-lang/crates.io-index"
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
dependencies = [
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_pcg"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_xorshift"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019
 "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020
]
K
kennytm 已提交
2021

N
Nick Cameron 已提交
2022 2023
[[package]]
name = "rayon"
A
Alex Crichton 已提交
2024
version = "1.0.1"
N
Nick Cameron 已提交
2025 2026
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2027
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2028
 "rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
2029 2030 2031 2032
]

[[package]]
name = "rayon-core"
N
Nick Cameron 已提交
2033
version = "1.4.0"
O
Oliver Schneider 已提交
2034 2035
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
2036
 "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2037
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2038
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
2039
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2040
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
2041 2042
]

N
Nick Cameron 已提交
2043 2044
[[package]]
name = "redox_syscall"
2045
version = "0.1.43"
O
Oliver Schneider 已提交
2046 2047 2048 2049 2050
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "redox_termios"
version = "0.1.1"
N
Nick Cameron 已提交
2051
source = "registry+https://github.com/rust-lang/crates.io-index"
O
Oliver Schneider 已提交
2052
dependencies = [
2053
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
2054
]
N
Nick Cameron 已提交
2055

2056 2057
[[package]]
name = "regex"
A
Alex Crichton 已提交
2058
version = "0.2.11"
2059 2060
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2061 2062
 "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2063
 "regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2064
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
2065
 "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2066 2067
]

2068 2069
[[package]]
name = "regex"
2070
version = "1.1.0"
2071 2072
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2073 2074 2075
 "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2076
 "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
2077
 "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2078 2079
]

A
Alex Crichton 已提交
2080 2081
[[package]]
name = "regex-syntax"
A
Alex Crichton 已提交
2082
version = "0.5.6"
A
Alex Crichton 已提交
2083 2084
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2085
 "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2086 2087
]

2088 2089
[[package]]
name = "regex-syntax"
2090
version = "0.6.4"
2091 2092
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2093
 "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
2094 2095
]

2096 2097 2098 2099 2100 2101 2102 2103
[[package]]
name = "remote-test-client"
version = "0.1.0"

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

A
Alex Crichton 已提交
2104 2105
[[package]]
name = "remove_dir_all"
A
Alex Crichton 已提交
2106
version = "0.5.1"
A
Alex Crichton 已提交
2107 2108
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2109
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2110 2111
]

2112 2113
[[package]]
name = "rls"
N
Nick Cameron 已提交
2114
version = "1.31.6"
2115
dependencies = [
2116
 "cargo 0.34.0",
2117
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
2118
 "clippy_lints 0.0.212",
2119
 "crossbeam-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
2120
 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
2121
 "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2122
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
2123
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
2124
 "home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
2125
 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
2126
 "jsonrpc-core 9.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2127
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2128
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2129 2130
 "lsp-codec 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "lsp-types 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2131
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
2132
 "ordslice 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2133
 "racer 2.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
2134
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2135
 "rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
2136
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2137
 "rls-analysis 0.16.10 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2138
 "rls-blacklist 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2139
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2140
 "rls-rustc 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
2141
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2142
 "rls-vfs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2143
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2144
 "rustc-workspace-hack 1.0.0",
H
Hugues de Valon 已提交
2145
 "rustc_tools_util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2146
 "rustfmt-nightly 1.0.1",
E
Eric Huss 已提交
2147
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2148 2149
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
H
Hugues de Valon 已提交
2150
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
2151 2152 2153
 "tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
2154 2155 2156
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
2157 2158 2159 2160
]

[[package]]
name = "rls-analysis"
N
Nick Cameron 已提交
2161
version = "0.16.10"
2162 2163
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2164
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
2165 2166
 "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)",
2167
 "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)",
2168
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2169
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2170 2171 2172 2173
 "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 已提交
2174
[[package]]
N
Nick Cameron 已提交
2175
name = "rls-blacklist"
N
Nick Cameron 已提交
2176
version = "0.1.3"
N
Nick Cameron 已提交
2177 2178
source = "registry+https://github.com/rust-lang/crates.io-index"

2179 2180
[[package]]
name = "rls-data"
N
Nick Cameron 已提交
2181
version = "0.18.1"
2182 2183 2184 2185
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)",
E
Eric Huss 已提交
2186
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2187
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
2188 2189
]

N
Nick Cameron 已提交
2190 2191
[[package]]
name = "rls-rustc"
N
Nick Cameron 已提交
2192
version = "0.5.0"
N
Nick Cameron 已提交
2193 2194
source = "registry+https://github.com/rust-lang/crates.io-index"

2195 2196
[[package]]
name = "rls-span"
2197
version = "0.4.0"
2198
source = "registry+https://github.com/rust-lang/crates.io-index"
2199
dependencies = [
2200
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
2201
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2202
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
2203 2204 2205 2206
]

[[package]]
name = "rls-vfs"
N
Nick Cameron 已提交
2207
version = "0.7.0"
2208 2209
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2210
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2211
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2212 2213
]

2214 2215
[[package]]
name = "rustbook"
2216 2217
version = "0.1.0"
dependencies = [
A
Alex Crichton 已提交
2218
 "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matt Ickstadt 已提交
2219
 "mdbook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
2220
]
2221 2222 2223 2224 2225 2226

[[package]]
name = "rustc"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2227
 "backtrace 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2228
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2229
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
S
scalexm 已提交
2230
 "chalk-engine 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
2231
 "flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2232 2233
 "fmt_macros 0.0.0",
 "graphviz 0.0.0",
2234
 "jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2235
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2236
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2237
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
N
Niko Matsakis 已提交
2238
 "polonius-engine 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2239 2240
 "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 已提交
2241
 "rustc_apfloat 0.0.0",
2242 2243
 "rustc_data_structures 0.0.0",
 "rustc_errors 0.0.0",
2244
 "rustc_fs_util 0.0.0",
2245
 "rustc_target 0.0.0",
A
Alex Crichton 已提交
2246
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2247
 "serialize 0.0.0",
2248
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2249 2250
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
2251
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
2252 2253
]

N
Nick Cameron 已提交
2254 2255
[[package]]
name = "rustc-ap-arena"
I
Igor Matuszewski 已提交
2256
version = "306.0.0"
T
topecongiro 已提交
2257 2258
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
2259
 "rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
T
topecongiro 已提交
2260 2261
]

N
Nick Cameron 已提交
2262 2263
[[package]]
name = "rustc-ap-graphviz"
I
Igor Matuszewski 已提交
2264
version = "306.0.0"
N
Nick Cameron 已提交
2265 2266
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
2267 2268
[[package]]
name = "rustc-ap-rustc_cratesio_shim"
I
Igor Matuszewski 已提交
2269
version = "306.0.0"
A
Alex Crichton 已提交
2270 2271
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2272
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2273
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2274
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2275 2276
]

T
topecongiro 已提交
2277 2278
[[package]]
name = "rustc-ap-rustc_data_structures"
I
Igor Matuszewski 已提交
2279
version = "306.0.0"
T
topecongiro 已提交
2280 2281
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2282
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2283
 "ena 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
2284
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2285
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2286 2287 2288
 "rustc-ap-graphviz 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_cratesio_shim 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2289 2290 2291
 "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)",
2292
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2293 2294 2295
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

T
topecongiro 已提交
2296 2297
[[package]]
name = "rustc-ap-rustc_errors"
I
Igor Matuszewski 已提交
2298
version = "306.0.0"
T
topecongiro 已提交
2299 2300
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
R
Ralf Jung 已提交
2301
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
2302
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2303 2304 2305 2306
 "rustc-ap-rustc_cratesio_shim 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
2307
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2308 2309 2310
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

N
Nick Cameron 已提交
2311 2312
[[package]]
name = "rustc-ap-rustc_target"
I
Igor Matuszewski 已提交
2313
version = "306.0.0"
N
Nick Cameron 已提交
2314 2315
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2316
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2317
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2318 2319 2320
 "rustc-ap-rustc_cratesio_shim 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2321 2322
]

A
Alex Crichton 已提交
2323 2324
[[package]]
name = "rustc-ap-serialize"
I
Igor Matuszewski 已提交
2325
version = "306.0.0"
N
Nick Cameron 已提交
2326
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2327
dependencies = [
2328
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2329
]
N
Nick Cameron 已提交
2330

A
Alex Crichton 已提交
2331 2332
[[package]]
name = "rustc-ap-syntax"
I
Igor Matuszewski 已提交
2333
version = "306.0.0"
A
Alex Crichton 已提交
2334 2335
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2336
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2337
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2338 2339 2340 2341 2342
 "rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_errors 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_target 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2343
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2344
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2345 2346
]

N
Nick Cameron 已提交
2347 2348
[[package]]
name = "rustc-ap-syntax_pos"
I
Igor Matuszewski 已提交
2349
version = "306.0.0"
A
Alex Crichton 已提交
2350 2351
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2352
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2353 2354 2355
 "rustc-ap-arena 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2356 2357 2358 2359
 "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)",
]

2360 2361
[[package]]
name = "rustc-demangle"
2362
version = "0.1.10"
2363
source = "registry+https://github.com/rust-lang/crates.io-index"
2364
dependencies = [
2365
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
2366 2367
 "rustc-std-workspace-core 1.0.0",
]
2368

2369 2370
[[package]]
name = "rustc-hash"
2371
version = "1.0.1"
2372
source = "registry+https://github.com/rust-lang/crates.io-index"
2373
dependencies = [
2374
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
2375
]
2376

2377 2378 2379 2380
[[package]]
name = "rustc-main"
version = "0.0.0"
dependencies = [
2381
 "jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
2382
 "rustc_codegen_ssa 0.0.0",
2383
 "rustc_driver 0.0.0",
2384
 "rustc_target 0.0.0",
2385 2386
]

J
John Kåre Alsaker 已提交
2387 2388
[[package]]
name = "rustc-rayon"
J
John Kåre Alsaker 已提交
2389
version = "0.1.1"
J
John Kåre Alsaker 已提交
2390 2391 2392
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 已提交
2393
 "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2394 2395 2396 2397
]

[[package]]
name = "rustc-rayon-core"
J
John Kåre Alsaker 已提交
2398
version = "0.1.1"
J
John Kåre Alsaker 已提交
2399 2400 2401
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)",
I
Igor Matuszewski 已提交
2402
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2403
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2404
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2405
 "rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2406 2407
]

2408 2409
[[package]]
name = "rustc-serialize"
2410
version = "0.3.24"
2411 2412
source = "registry+https://github.com/rust-lang/crates.io-index"

2413 2414 2415 2416 2417 2418 2419
[[package]]
name = "rustc-std-workspace-core"
version = "1.0.0"
dependencies = [
 "core 0.0.0",
]

A
Alex Crichton 已提交
2420 2421 2422 2423
[[package]]
name = "rustc-workspace-hack"
version = "1.0.0"
dependencies = [
2424
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
2425
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
2426
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2427
 "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
2428
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2429 2430 2431
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
2432
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2433 2434
]

2435 2436 2437 2438
[[package]]
name = "rustc_allocator"
version = "0.0.0"
dependencies = [
2439
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2440
 "rustc 0.0.0",
2441
 "rustc_data_structures 0.0.0",
2442
 "rustc_errors 0.0.0",
2443
 "rustc_target 0.0.0",
2444
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2445 2446 2447 2448
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2449 2450 2451 2452
[[package]]
name = "rustc_apfloat"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2453
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2454
 "rustc_cratesio_shim 0.0.0",
2455
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2456 2457
]

J
Jorge Aparicio 已提交
2458 2459 2460 2461
[[package]]
name = "rustc_asan"
version = "0.0.0"
dependencies = [
2462
 "alloc 0.0.0",
2463
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2464
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2465
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
2466 2467 2468
 "core 0.0.0",
]

2469 2470 2471 2472 2473
[[package]]
name = "rustc_borrowck"
version = "0.0.0"
dependencies = [
 "graphviz 0.0.0",
2474
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2475
 "rustc 0.0.0",
2476
 "rustc_data_structures 0.0.0",
2477 2478 2479 2480 2481 2482
 "rustc_errors 0.0.0",
 "rustc_mir 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

I
Irina Popa 已提交
2483 2484 2485 2486
[[package]]
name = "rustc_codegen_llvm"
version = "0.0.0"
dependencies = [
2487
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
2488
 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2489
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
2490
 "rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2491 2492 2493
 "rustc_llvm 0.0.0",
]

2494 2495 2496
[[package]]
name = "rustc_codegen_ssa"
version = "0.0.0"
2497
dependencies = [
B
bjorn3 已提交
2498
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2499
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
2500
 "jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
2501
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
2502
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2503 2504
 "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 已提交
2505
 "rustc 0.0.0",
2506
 "rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
B
bjorn3 已提交
2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518
 "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",
2519
]
2520

I
Irina Popa 已提交
2521 2522 2523 2524
[[package]]
name = "rustc_codegen_utils"
version = "0.0.0"
dependencies = [
2525 2526
 "flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Irina Popa 已提交
2527 2528 2529
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
 "rustc_incremental 0.0.0",
2530
 "rustc_metadata 0.0.0",
I
Irina Popa 已提交
2531 2532 2533 2534 2535 2536
 "rustc_mir 0.0.0",
 "rustc_target 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2537 2538 2539 2540
[[package]]
name = "rustc_cratesio_shim"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2541
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2542
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2543
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2544 2545
]

2546 2547 2548 2549
[[package]]
name = "rustc_data_structures"
version = "0.0.0"
dependencies = [
2550
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nicholas Nethercote 已提交
2551
 "ena 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
2552
 "graphviz 0.0.0",
2553
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2554
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
2555
 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
J
John Kåre Alsaker 已提交
2556 2557
 "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)",
2558
 "rustc_cratesio_shim 0.0.0",
2559
 "serialize 0.0.0",
2560
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2561
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2562 2563 2564 2565 2566 2567 2568
]

[[package]]
name = "rustc_driver"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2569
 "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
2570
 "graphviz 0.0.0",
2571
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2572
 "rustc 0.0.0",
J
John Kåre Alsaker 已提交
2573
 "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2574
 "rustc_allocator 0.0.0",
2575
 "rustc_borrowck 0.0.0",
I
Irina Popa 已提交
2576
 "rustc_codegen_utils 0.0.0",
2577
 "rustc_data_structures 0.0.0",
2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
 "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",
2588
 "rustc_target 0.0.0",
2589
 "rustc_traits 0.0.0",
2590
 "rustc_typeck 0.0.0",
A
Alex Crichton 已提交
2591
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2592
 "serialize 0.0.0",
2593
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2594 2595 2596 2597 2598 2599 2600 2601 2602
 "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 已提交
2603
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
2604
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Rousskov 已提交
2605
 "rustc_cratesio_shim 0.0.0",
O
Oliver Schneider 已提交
2606
 "rustc_data_structures 0.0.0",
2607
 "serialize 0.0.0",
2608
 "syntax_pos 0.0.0",
2609
 "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
2610
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2611 2612
]

2613 2614 2615 2616
[[package]]
name = "rustc_fs_util"
version = "0.0.0"

2617 2618 2619 2620 2621
[[package]]
name = "rustc_incremental"
version = "0.0.0"
dependencies = [
 "graphviz 0.0.0",
2622
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2623
 "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2624 2625
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
2626
 "rustc_fs_util 0.0.0",
2627 2628 2629 2630 2631 2632 2633 2634 2635
 "serialize 0.0.0",
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_lint"
version = "0.0.0"
dependencies = [
2636
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2637
 "rustc 0.0.0",
2638
 "rustc_data_structures 0.0.0",
2639
 "rustc_target 0.0.0",
2640 2641 2642 2643 2644 2645 2646 2647 2648
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_llvm"
version = "0.0.0"
dependencies = [
 "build_helper 0.1.0",
2649
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
2650 2651
]

J
Jorge Aparicio 已提交
2652 2653 2654 2655
[[package]]
name = "rustc_lsan"
version = "0.0.0"
dependencies = [
2656
 "alloc 0.0.0",
2657
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2658
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2659
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
2660 2661 2662
 "core 0.0.0",
]

2663 2664 2665 2666
[[package]]
name = "rustc_metadata"
version = "0.0.0"
dependencies = [
2667 2668
 "flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2669
 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2670 2671 2672
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
 "rustc_errors 0.0.0",
2673
 "rustc_target 0.0.0",
2674
 "serialize 0.0.0",
2675
 "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2676
 "syntax 0.0.0",
2677
 "syntax_ext 0.0.0",
2678 2679 2680 2681 2682 2683 2684
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_mir"
version = "0.0.0"
dependencies = [
O
Oliver Schneider 已提交
2685
 "arena 0.0.0",
A
Alex Crichton 已提交
2686
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2687
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
S
Santiago Pastorino 已提交
2688
 "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
2689
 "graphviz 0.0.0",
2690
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2691
 "log_settings 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
N
Niko Matsakis 已提交
2692
 "polonius-engine 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2693
 "rustc 0.0.0",
2694
 "rustc_apfloat 0.0.0",
2695
 "rustc_data_structures 0.0.0",
2696
 "rustc_errors 0.0.0",
2697
 "rustc_target 0.0.0",
O
Oliver Schneider 已提交
2698
 "serialize 0.0.0",
2699
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2700 2701 2702 2703
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

J
Jorge Aparicio 已提交
2704 2705 2706 2707
[[package]]
name = "rustc_msan"
version = "0.0.0"
dependencies = [
2708
 "alloc 0.0.0",
2709
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2710
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2711
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
2712 2713 2714
 "core 0.0.0",
]

2715 2716 2717 2718
[[package]]
name = "rustc_passes"
version = "0.0.0"
dependencies = [
2719
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2720
 "rustc 0.0.0",
2721
 "rustc_data_structures 0.0.0",
2722
 "rustc_errors 0.0.0",
O
Oliver Schneider 已提交
2723
 "rustc_mir 0.0.0",
2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
 "syntax 0.0.0",
 "syntax_pos 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",
2744
 "rustc_data_structures 0.0.0",
2745
 "rustc_typeck 0.0.0",
2746 2747 2748 2749 2750 2751 2752 2753 2754
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_resolve"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2755
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2756
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2757
 "rustc 0.0.0",
O
Oliver Schneider 已提交
2758
 "rustc_data_structures 0.0.0",
2759
 "rustc_errors 0.0.0",
2760
 "rustc_metadata 0.0.0",
2761 2762 2763 2764 2765 2766 2767 2768
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "rustc_save_analysis"
version = "0.0.0"
dependencies = [
2769
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2770
 "rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
2771
 "rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2772
 "rustc 0.0.0",
2773
 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
2774
 "rustc_codegen_utils 0.0.0",
N
Nick Cameron 已提交
2775
 "rustc_data_structures 0.0.0",
2776
 "rustc_target 0.0.0",
2777
 "rustc_typeck 0.0.0",
2778 2779 2780 2781
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2782 2783 2784 2785
[[package]]
name = "rustc_target"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2786
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2787
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2788
 "rustc_cratesio_shim 0.0.0",
2789
 "rustc_data_structures 0.0.0",
2790 2791 2792
 "serialize 0.0.0",
]

M
Matthias Krüger 已提交
2793 2794
[[package]]
name = "rustc_tools_util"
H
Hugues de Valon 已提交
2795
version = "0.1.1"
2796 2797 2798

[[package]]
name = "rustc_tools_util"
H
Hugues de Valon 已提交
2799 2800
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
M
Matthias Krüger 已提交
2801

2802 2803 2804 2805
[[package]]
name = "rustc_traits"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
2806
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
S
scalexm 已提交
2807
 "chalk-engine 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
2808
 "graphviz 0.0.0",
2809
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2810 2811
 "rustc 0.0.0",
 "rustc_data_structures 0.0.0",
2812
 "rustc_target 0.0.0",
2813
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2814 2815 2816 2817
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

J
Jorge Aparicio 已提交
2818 2819 2820 2821
[[package]]
name = "rustc_tsan"
version = "0.0.0"
dependencies = [
2822
 "alloc 0.0.0",
2823
 "build_helper 0.1.0",
A
Alex Crichton 已提交
2824
 "cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)",
2825
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
2826 2827 2828
 "core 0.0.0",
]

2829 2830 2831 2832 2833
[[package]]
name = "rustc_typeck"
version = "0.0.0"
dependencies = [
 "arena 0.0.0",
2834
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2835
 "rustc 0.0.0",
T
Tim Neumann 已提交
2836
 "rustc_data_structures 0.0.0",
2837
 "rustc_errors 0.0.0",
2838
 "rustc_target 0.0.0",
2839
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
2840 2841 2842 2843
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

2844 2845
[[package]]
name = "rustc_version"
2846
version = "0.2.3"
2847 2848 2849 2850 2851
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

2852 2853 2854 2855
[[package]]
name = "rustdoc"
version = "0.0.0"
dependencies = [
2856
 "minifier 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
2857
 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
M
Manish Goregaokar 已提交
2858
 "pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2859
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
2860 2861
]

G
Guillaume Gomez 已提交
2862 2863 2864 2865
[[package]]
name = "rustdoc-themes"
version = "0.1.0"

M
Mark Simulacrum 已提交
2866 2867 2868 2869 2870
[[package]]
name = "rustdoc-tool"
version = "0.0.0"
dependencies = [
 "rustdoc 0.0.0",
2871 2872
]

2873 2874
[[package]]
name = "rustfix"
E
Eric Huss 已提交
2875
version = "0.4.4"
A
Alex Crichton 已提交
2876 2877
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
2878
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
2879
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
2880
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2881 2882
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
2883 2884
]

2885 2886
[[package]]
name = "rustfmt-nightly"
2887
version = "1.0.1"
2888
dependencies = [
A
Alex Crichton 已提交
2889
 "assert_cli 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2890
 "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
2891
 "bytecount 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2892
 "cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
2893
 "derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
2894
 "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
2895
 "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2896
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2897 2898
 "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)",
I
Igor Matuszewski 已提交
2899
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2900 2901
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2902 2903 2904 2905
 "rustc-ap-rustc_target 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-ap-syntax_pos 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-workspace-hack 1.0.0",
E
Eric Huss 已提交
2906
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2907 2908
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2909
 "term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
2910
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
2911 2912 2913
 "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
2914 2915 2916 2917 2918 2919 2920
[[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)",
2921
 "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
2922 2923 2924
 "wait-timeout 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

A
Alex Crichton 已提交
2925 2926
[[package]]
name = "ryu"
2927
version = "0.2.7"
A
Alex Crichton 已提交
2928 2929
source = "registry+https://github.com/rust-lang/crates.io-index"

2930 2931
[[package]]
name = "same-file"
2932
version = "1.0.4"
2933 2934
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
2935
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2936 2937 2938 2939
]

[[package]]
name = "schannel"
2940
version = "0.1.14"
2941 2942
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
2943
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2944
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
2945 2946
]

A
Alex Crichton 已提交
2947 2948
[[package]]
name = "scoped-tls"
A
Alex Crichton 已提交
2949
version = "0.1.2"
A
Alex Crichton 已提交
2950 2951
source = "registry+https://github.com/rust-lang/crates.io-index"

O
Oliver Schneider 已提交
2952 2953 2954 2955 2956
[[package]]
name = "scopeguard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

2957 2958 2959 2960 2961 2962
[[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)",
E
Eric Huss 已提交
2963
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2964 2965 2966 2967 2968 2969 2970 2971 2972
]

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

[[package]]
name = "serde"
E
Eric Huss 已提交
2973
version = "1.0.82"
2974
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
2975 2976 2977
dependencies = [
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
]
2978 2979 2980

[[package]]
name = "serde_derive"
2981
version = "1.0.81"
2982 2983
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
2984
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
2985 2986
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
2987 2988 2989 2990
]

[[package]]
name = "serde_ignored"
2991
version = "0.0.4"
2992 2993
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
E
Eric Huss 已提交
2994
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
2995
]
S
Steve Klabnik 已提交
2996 2997 2998

[[package]]
name = "serde_json"
2999
version = "1.0.33"
S
Steve Klabnik 已提交
3000 3001
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3002
 "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
3003
 "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
3004
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
S
Steve Klabnik 已提交
3005 3006
]

3007 3008 3009
[[package]]
name = "serialize"
version = "0.0.0"
3010
dependencies = [
3011
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
3012
]
3013

3014 3015
[[package]]
name = "shell-escape"
A
Alex Crichton 已提交
3016
version = "0.1.4"
3017 3018
source = "registry+https://github.com/rust-lang/crates.io-index"

S
steveklabnik 已提交
3019 3020 3021 3022 3023
[[package]]
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

3024 3025 3026 3027 3028 3029 3030 3031 3032
[[package]]
name = "signal-hook"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arc-swap 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
]

S
steveklabnik 已提交
3033 3034 3035 3036 3037
[[package]]
name = "siphasher"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

3038 3039 3040 3041 3042
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

3043 3044
[[package]]
name = "smallvec"
3045
version = "0.6.7"
3046
source = "registry+https://github.com/rust-lang/crates.io-index"
3047 3048 3049
dependencies = [
 "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
3050

M
Mark Simulacrum 已提交
3051 3052
[[package]]
name = "socket2"
3053
version = "0.3.8"
M
Mark Simulacrum 已提交
3054 3055
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3056
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
3057
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3058
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
3059
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
M
Mark Simulacrum 已提交
3060 3061
]

3062 3063
[[package]]
name = "stable_deref_trait"
A
Alex Crichton 已提交
3064
version = "1.1.0"
3065 3066
source = "registry+https://github.com/rust-lang/crates.io-index"

3067 3068 3069 3070 3071
[[package]]
name = "std"
version = "0.0.0"
dependencies = [
 "alloc 0.0.0",
3072
 "backtrace-sys 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
3073
 "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
3074
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
3075
 "core 0.0.0",
3076
 "dlmalloc 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3077
 "fortanix-sgx-abi 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
3078
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3079 3080
 "panic_abort 0.0.0",
 "panic_unwind 0.0.0",
3081
 "profiler_builtins 0.0.0",
3082
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
3083
 "rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
J
Jorge Aparicio 已提交
3084 3085 3086 3087
 "rustc_asan 0.0.0",
 "rustc_lsan 0.0.0",
 "rustc_msan 0.0.0",
 "rustc_tsan 0.0.0",
3088 3089 3090
 "unwind 0.0.0",
]

S
steveklabnik 已提交
3091 3092
[[package]]
name = "string_cache"
A
Alex Crichton 已提交
3093
version = "0.7.3"
S
steveklabnik 已提交
3094 3095
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
3096
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3097 3098
 "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 已提交
3099
 "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
E
Eric Huss 已提交
3100
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3101
 "string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3102 3103 3104 3105 3106
 "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "string_cache_codegen"
A
Alex Crichton 已提交
3107
version = "0.4.1"
S
steveklabnik 已提交
3108 3109
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3110 3111 3112 3113
 "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 已提交
3114 3115 3116 3117 3118 3119 3120 3121
 "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"

3122 3123
[[package]]
name = "strsim"
A
Aleksey Kladov 已提交
3124
version = "0.7.0"
3125 3126
source = "registry+https://github.com/rust-lang/crates.io-index"

M
Matt Ickstadt 已提交
3127 3128
[[package]]
name = "strum"
3129
version = "0.11.0"
M
Matt Ickstadt 已提交
3130 3131 3132 3133
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "strum_macros"
3134
version = "0.11.0"
M
Matt Ickstadt 已提交
3135 3136
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3137
 "heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
3138
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
3139 3140
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
M
Matt Ickstadt 已提交
3141 3142
]

3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
[[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 已提交
3153 3154
[[package]]
name = "syn"
3155
version = "0.15.22"
N
Nick Cameron 已提交
3156 3157 3158
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)",
3159
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3160 3161 3162
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

3163 3164 3165 3166 3167 3168 3169 3170
[[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 已提交
3171 3172
[[package]]
name = "synstructure"
3173
version = "0.10.1"
A
Alex Crichton 已提交
3174 3175
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
N
Nick Cameron 已提交
3176
 "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
3177 3178
 "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3179
 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3180 3181
]

3182 3183 3184 3185
[[package]]
name = "syntax"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
3186
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
3187
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
3188
 "rustc_data_structures 0.0.0",
3189
 "rustc_errors 0.0.0",
3190
 "rustc_target 0.0.0",
A
Alex Crichton 已提交
3191
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
3192
 "serialize 0.0.0",
3193
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
3194 3195 3196 3197 3198 3199 3200 3201
 "syntax_pos 0.0.0",
]

[[package]]
name = "syntax_ext"
version = "0.0.0"
dependencies = [
 "fmt_macros 0.0.0",
3202
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
3203
 "rustc_data_structures 0.0.0",
3204
 "rustc_errors 0.0.0",
3205
 "rustc_target 0.0.0",
3206
 "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
3207 3208 3209 3210 3211 3212 3213 3214
 "syntax 0.0.0",
 "syntax_pos 0.0.0",
]

[[package]]
name = "syntax_pos"
version = "0.0.0"
dependencies = [
3215
 "arena 0.0.0",
3216
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
3217
 "rustc_data_structures 0.0.0",
A
Alex Crichton 已提交
3218
 "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
3219
 "serialize 0.0.0",
M
Mark Simulacrum 已提交
3220
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
3221 3222
]

3223 3224
[[package]]
name = "tar"
3225
version = "0.4.20"
3226 3227
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3228
 "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
3229
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3230
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3231
 "xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
3232 3233
]

A
Aleksey Kladov 已提交
3234 3235
[[package]]
name = "tempfile"
3236
version = "3.0.5"
A
Aleksey Kladov 已提交
3237 3238
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3239
 "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
3240
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3241 3242
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3243
 "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
3244
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Aleksey Kladov 已提交
3245 3246
]

S
steveklabnik 已提交
3247 3248 3249 3250 3251
[[package]]
name = "tendril"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3252
 "futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3253 3254 3255 3256
 "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)",
]

3257 3258 3259 3260
[[package]]
name = "term"
version = "0.0.0"

A
Alan Du 已提交
3261 3262 3263 3264 3265
[[package]]
name = "term"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3266
 "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
3267
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alan Du 已提交
3268 3269
]

3270 3271
[[package]]
name = "termcolor"
3272
version = "1.0.4"
3273 3274
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3275
 "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
3276 3277
]

3278
[[package]]
O
Oliver Schneider 已提交
3279 3280
name = "termion"
version = "1.5.1"
3281 3282
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3283
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3284
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
3285
 "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3286 3287
]

3288 3289 3290 3291
[[package]]
name = "test"
version = "0.0.0"
dependencies = [
A
Alex Crichton 已提交
3292
 "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
3293
 "proc_macro 0.0.0",
3294 3295 3296
 "term 0.0.0",
]

S
steveklabnik 已提交
3297 3298
[[package]]
name = "textwrap"
A
Alex Crichton 已提交
3299
version = "0.10.0"
S
steveklabnik 已提交
3300 3301
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
M
Mark Simulacrum 已提交
3302
 "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3303 3304
]

A
Alex Crichton 已提交
3305 3306
[[package]]
name = "thread_local"
A
Alex Crichton 已提交
3307
version = "0.3.6"
3308 3309
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
I
Igor Matuszewski 已提交
3310
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
3311 3312
]

3313 3314 3315
[[package]]
name = "tidy"
version = "0.1.0"
3316
dependencies = [
E
Eric Huss 已提交
3317
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
3318 3319
 "serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
3320
]
3321

A
Alex Crichton 已提交
3322 3323
[[package]]
name = "time"
A
Alex Crichton 已提交
3324
version = "0.1.40"
A
Alex Crichton 已提交
3325 3326
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3327
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3328
 "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
3329
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3330 3331
]

3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519
[[package]]
name = "tokio"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-codec"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-current-thread"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-executor"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-fs"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-io"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-process"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-reactor"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-signal"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-tcp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-threadpool"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-timer"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-udp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "tokio-uds"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
 "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
 "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

3520 3521
[[package]]
name = "toml"
3522
version = "0.4.10"
3523 3524
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
E
Eric Huss 已提交
3525
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
3526 3527
]

S
steveklabnik 已提交
3528 3529 3530 3531 3532 3533 3534
[[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)",
I
Igor Matuszewski 已提交
3535
 "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3536
 "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
3537
 "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
S
steveklabnik 已提交
3538 3539
]

E
Eric Huss 已提交
3540 3541 3542 3543 3544
[[package]]
name = "typenum"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3545 3546
[[package]]
name = "ucd-util"
3547
version = "0.1.3"
A
Alex Crichton 已提交
3548 3549
source = "registry+https://github.com/rust-lang/crates.io-index"

3550 3551
[[package]]
name = "unicode-bidi"
S
steveklabnik 已提交
3552
version = "0.3.4"
S
Steve Klabnik 已提交
3553 3554
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3555
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
3556 3557
]

3558 3559
[[package]]
name = "unicode-normalization"
A
Alex Crichton 已提交
3560
version = "0.1.7"
3561 3562 3563 3564
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "unicode-segmentation"
A
Alex Crichton 已提交
3565
version = "1.2.1"
3566 3567 3568 3569
source = "registry+https://github.com/rust-lang/crates.io-index"

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

3573 3574 3575 3576 3577
[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3578 3579 3580 3581 3582
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
Steve Klabnik 已提交
3583 3584
[[package]]
name = "unreachable"
N
Nick Cameron 已提交
3585
version = "1.0.0"
S
Steve Klabnik 已提交
3586 3587 3588 3589 3590
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

3591 3592 3593 3594
[[package]]
name = "unstable-book-gen"
version = "0.1.0"
dependencies = [
3595
 "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
3596 3597 3598
 "tidy 0.1.0",
]

N
Nick Cameron 已提交
3599 3600 3601 3602
[[package]]
name = "unwind"
version = "0.0.0"
dependencies = [
3603
 "compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
3604
 "core 0.0.0",
3605
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
N
Nick Cameron 已提交
3606 3607
]

3608 3609
[[package]]
name = "url"
3610
version = "1.7.2"
3611 3612
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
A
Alex Crichton 已提交
3613
 "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3614
 "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
O
Oliver Schneider 已提交
3615
 "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
3616 3617 3618 3619 3620 3621 3622
]

[[package]]
name = "url_serde"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
E
Eric Huss 已提交
3623
 "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
3624
 "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
3625 3626
]

S
steveklabnik 已提交
3627 3628 3629 3630 3631
[[package]]
name = "utf-8"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

3632 3633
[[package]]
name = "utf8-ranges"
3634
version = "1.0.2"
3635 3636
source = "registry+https://github.com/rust-lang/crates.io-index"

3637 3638
[[package]]
name = "vcpkg"
A
Alex Crichton 已提交
3639
version = "0.2.6"
3640 3641
source = "registry+https://github.com/rust-lang/crates.io-index"

3642 3643
[[package]]
name = "vec_map"
A
Alex Crichton 已提交
3644
version = "0.8.1"
3645 3646
source = "registry+https://github.com/rust-lang/crates.io-index"

R
Ralf Jung 已提交
3647 3648
[[package]]
name = "vergen"
R
Ralf Jung 已提交
3649
version = "3.0.4"
R
Ralf Jung 已提交
3650 3651 3652
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
3653
 "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
I
Igor Matuszewski 已提交
3654
 "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
R
Ralf Jung 已提交
3655 3656
]

3657 3658 3659 3660 3661
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

S
Steve Klabnik 已提交
3662 3663 3664 3665 3666
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3667 3668 3669 3670 3671
[[package]]
name = "wait-timeout"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3672
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3673 3674
]

3675 3676
[[package]]
name = "walkdir"
3677
version = "2.2.7"
3678 3679
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3680
 "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
3681
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3682
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3683 3684
]

3685 3686 3687 3688 3689
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"

3690 3691
[[package]]
name = "winapi"
3692
version = "0.3.6"
3693 3694 3695 3696 3697 3698
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)",
]

3699 3700 3701 3702 3703
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

3704 3705 3706 3707 3708
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

A
Alex Crichton 已提交
3709 3710 3711 3712 3713
[[package]]
name = "winapi-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3714
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3715 3716
]

3717 3718 3719 3720 3721
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

3722 3723
[[package]]
name = "wincolor"
A
Alex Crichton 已提交
3724
version = "1.0.1"
3725 3726
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3727
 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
A
Alex Crichton 已提交
3728
 "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
3729 3730
]

3731 3732 3733 3734 3735 3736 3737 3738 3739
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
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)",
]

3740 3741
[[package]]
name = "xattr"
A
Alex Crichton 已提交
3742
version = "0.2.2"
3743 3744
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
3745
 "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)",
3746 3747 3748 3749
]

[[package]]
name = "xz2"
A
Alex Crichton 已提交
3750
version = "0.1.5"
3751 3752
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Bastien Orivel 已提交
3753
 "lzma-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
3754 3755 3756 3757 3758 3759 3760
]

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

3761
[metadata]
3762 3763
"checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c"
"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
S
steveklabnik 已提交
3764
"checksum ammonia 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd4c682378117e4186a492b2252b9537990e1617f44aed9788b9a1149de45477"
A
Aleksey Kladov 已提交
3765
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
3766
"checksum arc-swap 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1025aeae2b664ca0ea726a89d574fe8f4e77dd712d443236ad1de00379450cf6"
N
Nick Cameron 已提交
3767
"checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
A
Alex Crichton 已提交
3768
"checksum assert_cli 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98589b0e465a6c510d95fceebd365bb79bedece7f6e18a480897f2015f85ec51"
R
Ralf Jung 已提交
3769
"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
3770
"checksum backtrace 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "18b65ea1161bfb2dd6da6fade5edd4dbd08fba85012123dd333d2fd1b90b2782"
3771
"checksum backtrace-sys 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)" = "6ea90dd7b012b3d1a2cb6bec16670a0db2c95d4e931e84f4047e0460c1b34c8d"
A
Alex Crichton 已提交
3772 3773
"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 已提交
3774
"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5"
A
Alex Crichton 已提交
3775
"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
3776 3777
"checksum bufstream 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
"checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39"
N
Nick Cameron 已提交
3778
"checksum bytecount 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b92204551573580e078dc80017f36a213eb77a0450e4ddd8cfa0f3f2d1f0178f"
3779
"checksum byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "94f88df23a25417badc922ab0f5716cc1330e87f71ddd9203b3a3ccd9cedf75d"
3780
"checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
A
Alex Crichton 已提交
3781
"checksum bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "716960a18f978640f25101b5cbf1c6f6b0d3192fab36a2d98ca96f0ecbe41010"
3782
"checksum cargo_metadata 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d8dfe3adeb30f7938e6c1dd5327f29235d8ada3e898aeb08c343005ec2915a2"
3783
"checksum cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749"
3784
"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4"
S
scalexm 已提交
3785
"checksum chalk-engine 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17ec698a6f053a23bfbe646d9f2fde4b02abc19125595270a99e6f44ae0bdd1a"
3786
"checksum chalk-macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "295635afd6853aa9f20baeb7f0204862440c0fe994c5a253d5f479dac41d047e"
3787
"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878"
A
Alex Crichton 已提交
3788
"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
K
kennytm 已提交
3789
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
A
Alex Crichton 已提交
3790
"checksum cmake 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)" = "704fbf3bb5149daab0afb255dbea24a1f08d2f4099cedb9baab6d470d4c5eefb"
N
Nick Cameron 已提交
3791
"checksum colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b0aa3473e85a3161b59845d6096b289bb577874cafeaf75ea1b1beaa6572c7fc"
O
Oliver Schneider 已提交
3792 3793
"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"
3794
"checksum compiler_builtins 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd14d75a16b6c836c62350e2e8c85495ed8e13df30a7298c574cb1ee4cdac7bc"
3795
"checksum compiletest_rs 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0d76d4322a40f6b0db7259d4f2c8a65ed8b0d84fce0bbc61b98cf47f8ec6eec3"
3796 3797 3798 3799
"checksum core-foundation 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4e2640d6d0bf22e82bed1b73c6aef8d5dd31e5abe6666c57e6d45e2649f4f887"
"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
"checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb"
"checksum crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192"
N
Nick Cameron 已提交
3800
"checksum crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b85741761b7f160bc5e7e0c14986ef685b7f8bf9b7ad081c60c604bb4649827"
3801
"checksum crossbeam-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5b2a9ea8f77c7f9efd317a8a5645f515d903a2d86ee14d2337a5facd1bd52c12"
N
Nick Cameron 已提交
3802
"checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
3803
"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
A
Alex Crichton 已提交
3804
"checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150"
N
Nick Cameron 已提交
3805
"checksum crossbeam-epoch 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c90f1474584f38e270b5b613e898c8c328aa4f3dea85e0a27ac2e642f009416"
3806
"checksum crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f10a4f8f409aaac4b16a5474fb233624238fcdeefb9ba50d5ea059aab63ba31c"
N
Nick Cameron 已提交
3807
"checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
A
Alex Crichton 已提交
3808
"checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015"
3809
"checksum crossbeam-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e07fc155212827475223f0bcfae57e945e694fc90950ddf3f6695bbfd5555c72"
A
Alex Crichton 已提交
3810
"checksum crypto-hash 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "09de9ee0fc255ace04c7fa0763c9395a945c37c8292bb554f8d48361d1dcf1b4"
A
Alex Crichton 已提交
3811 3812
"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"
N
Niko Matsakis 已提交
3813
"checksum datafrog 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a0afaad2b26fa326569eb264b1363e8ae3357618c43982b3f285f0774ce76b69"
3814
"checksum derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6ca414e896ae072546f4d789f452daaecf60ddee4c9df5dc6d5936d769e3d87c"
N
Nick Cameron 已提交
3815
"checksum derive_more 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f57d78cf3bd45270dad4e70c21ec77a960b36c7a841ff9db76aaa775a8fb871"
O
Oliver Schneider 已提交
3816
"checksum diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a"
M
Mark Simulacrum 已提交
3817
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
R
Ralf Jung 已提交
3818
"checksum directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "72d337a64190607d4fcca2cb78982c5dd57f4916e19696b48a575fa746b6cb0f"
3819
"checksum dlmalloc 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c46c65de42b063004b31c67a98abe071089b289ff0919c660ed7ff4f59317f8"
A
Alex Crichton 已提交
3820
"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
3821
"checksum elasticlunr-rs 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a99a310cd1f9770e7bf8e48810c7bcbb0e078c8fb23a8c7bcf0da4c2bf61a455"
N
Nicholas Nethercote 已提交
3822
"checksum ena 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f56c93cc076508c549d9bb747f79aa9b4eb098be7b8cad8830c3137ef52d1e00"
3823
"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38"
A
Alex Crichton 已提交
3824
"checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e"
N
Nick Cameron 已提交
3825
"checksum environment 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4b14e20978669064c33b4c1e0fb4083412e40fe56cbea2eae80fd7591503ee"
3826
"checksum error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3"
R
Ralf Jung 已提交
3827
"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
I
Igor Matuszewski 已提交
3828
"checksum failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6dd377bcc1b1b7ce911967e3ec24fa19c3224394ec05b54aa7b083d498341ac7"
3829
"checksum failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "64c2d913fe8ed3b6c6518eedf4538255b989945c14c2a7d5cbff62a5e2120596"
3830
"checksum filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646"
3831
"checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
3832
"checksum flate2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2291c165c8e703ee54ef3055ad6188e3d51108e2ded18e9f2476e774fc5ad3d4"
O
Oliver Schneider 已提交
3833 3834 3835
"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"
3836
"checksum fortanix-sgx-abi 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3f8cbee5e872cf7db61a999a041f9bc4706ca7bf7df4cb914f53fabb1c1bc550"
3837
"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
3838
"checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
3839
"checksum fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f"
3840 3841
"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 已提交
3842 3843
"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 已提交
3844
"checksum fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
A
Alex Crichton 已提交
3845
"checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05"
H
Hugues de Valon 已提交
3846 3847
"checksum git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7339329bfa14a00223244311560d11f8f489b453fb90092af97f267a6090ab0"
"checksum git2-curl 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d58551e903ed7e2d6fe3a2f3c7efa3a784ec29b19d0fbb035aaf0497c183fbdd"
3848
"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
3849
"checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865"
A
Alex Crichton 已提交
3850
"checksum handlebars 0.32.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d89ec99d1594f285d4590fc32bac5f75cdab383f1123d504d27862c644a807dd"
3851
"checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
A
Alex Crichton 已提交
3852
"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
A
Alex Crichton 已提交
3853
"checksum home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "80dff82fb58cfbbc617fb9a9184b010be0529201553cda50ad04372bc2333aff"
3854
"checksum html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c213fa6a618dc1da552f54f85cba74b05d8e883c92ec4e89067736938084c26e"
3855
"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
A
Alex Crichton 已提交
3856
"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
M
Manish Goregaokar 已提交
3857
"checksum if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4bac95d9aa0624e7b78187d6fb8ab012b41d9f6f54b1bcb61e61c4845f8357ec"
3858
"checksum ignore 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "36ecfc5ad80f0b1226df948c562e2cddd446096be3f644c95106400eae8a5e01"
E
Eric Huss 已提交
3859
"checksum im-rc 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4591152fd573cf453a890b5f9fdc5c328a751a0785539316739d5f85e5c468c"
3860
"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
S
steveklabnik 已提交
3861
"checksum is-match 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7e5b386aef33a1c677be65237cb9d32c3f3ef56bd035949710c4bb13083eb053"
A
Alex Crichton 已提交
3862
"checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450"
3863
"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
A
Alex Crichton 已提交
3864
"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
3865
"checksum jemalloc-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "bfc62c8e50e381768ce8ee0428ee53741929f7ebd73e4d83f669bcf7693e00ae"
3866
"checksum jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "dd80e58f77e0cdea53ba96acc5e04479e5ffc5d869626a6beafe50fed867eace"
3867
"checksum json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be"
H
Hugues de Valon 已提交
3868
"checksum jsonrpc-core 9.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4e9cbeda300803d381390fb65e8158437728c39e6987ed23bee82728b73511a7"
3869
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
O
Oliver Schneider 已提交
3870
"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
I
Igor Matuszewski 已提交
3871
"checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1"
3872
"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
3873
"checksum libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)" = "023a4cd09b2ff695f9734c1934145a315594b7986398496841c7031a5a1bbdbd"
E
Eric Huss 已提交
3874
"checksum libgit2-sys 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)" = "48441cb35dc255da8ae72825689a95368bf510659ae1ad55dc4aa88cb1789bf1"
3875
"checksum libnghttp2-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d75d7966bda4730b722d1eab8e668df445368a24394bae9fc1e8dc0ab3dbe4f4"
3876
"checksum libssh2-sys 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "126a1f4078368b163bfdee65fbab072af08a1b374a5551b21e87ade27b1fbf9d"
3877
"checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
M
Mark Rousskov 已提交
3878
"checksum lock_api 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "949826a5ccf18c1b3a7c3d57692778d21768b79e46eb9dd07bfc4c2160036c54"
3879
"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6"
A
Alex Crichton 已提交
3880
"checksum log_settings 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19af41f0565d7c19b2058153ad0b42d4d5ce89ec4dbf06ed6741114a8b63e7cd"
3881 3882
"checksum lsp-codec 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b29e3d1632fef13c1286b0b2f8545a7d894ae565a7fac013b90a17ee5bfbc91"
"checksum lsp-types 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a252cc2be87d9329dd91c505a951996b3263582ba304870960faaae77b642183"
B
Bastien Orivel 已提交
3883
"checksum lzma-sys 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d1eaa027402541975218bb0eec67d6b0412f6233af96e0d096d31dbdfd22e614"
S
steveklabnik 已提交
3884
"checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
G
Guillaume Gomez 已提交
3885
"checksum macro-utils 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2c4deaccc2ead6a28c16c0ba82f07d52b6475397415ce40876e559b0b0ea510"
S
steveklabnik 已提交
3886 3887
"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 已提交
3888
"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
M
Matt Ickstadt 已提交
3889
"checksum mdbook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "90b5a8d7e341ceee5db3882a06078d42661ddcfa2b3687319cc5da76ec4e782f"
3890
"checksum memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0a3eb002f0535929f1199681417029ebea04aadc0c7a4224b46be99c7f5d6a16"
3891
"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
N
Nick Cameron 已提交
3892
"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
3893
"checksum minifier 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f299df45afd73332044ea9f717c816a84fc90c8b631409abf339ba93642a7985"
3894 3895 3896
"checksum miniz-sys 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "0300eafb20369952951699b68243ab4334f4b10a88f411c221d444b36c40e649"
"checksum miniz_oxide 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ad30a47319c16cde58d0314f5d98202a80c9083b5f61178457403dfb14e509c"
"checksum miniz_oxide_c_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "28edaef377517fd9fe3e085c37d892ce7acd1fbeab9239c5a36eec352d8a8b7e"
3897 3898 3899 3900
"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432"
"checksum mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3"
"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
A
Alex Crichton 已提交
3901
"checksum miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
3902
"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
A
Alex Crichton 已提交
3903
"checksum new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cdc457076c78ab54d5e0d6fa7c47981757f1e34dc39ff92787f217dede586c4"
N
Nick Cameron 已提交
3904
"checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
3905
"checksum num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8af1847c907c2f04d7bfd572fb25bbb4385c637fe5be163cf2f8c5d778fe1e7d"
A
Alex Crichton 已提交
3906
"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea"
3907
"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1"
3908
"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
A
Alex Crichton 已提交
3909
"checksum open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113"
3910
"checksum opener 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "04b1d6b086d9b3009550f9b6f81b10ad9428cf14f404b8e1a3a06f6f012c8ec9"
T
Tatsuyuki Ishi 已提交
3911
"checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9"
A
Alex Crichton 已提交
3912
"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
3913
"checksum openssl-src 111.1.0+1.1.1a (registry+https://github.com/rust-lang/crates.io-index)" = "26bb632127731bf4ac49bf86a5dde12d2ca0918c2234fc39d79d4da2ccbc6da7"
T
Tatsuyuki Ishi 已提交
3914
"checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6"
3915
"checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
3916
"checksum ordslice 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd20eec3dbe4376829cb7d80ae6ac45e0a766831dca50202ff2d40db46a8a024"
3917
"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
N
Nick Cameron 已提交
3918
"checksum packed_simd 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "25d36de864f7218ec5633572a800109bbe5a1cc8d9d95a967f3daf93ea7e6ddc"
M
Mark Rousskov 已提交
3919
"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5"
3920
"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
M
Mark Rousskov 已提交
3921
"checksum parking_lot_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06a2b6aae052309c2fd2161ef58f5067bc17bb758377a0de9d4b279d603fdd8a"
3922
"checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
O
Oliver Schneider 已提交
3923
"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
A
Alex Crichton 已提交
3924
"checksum pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0fce5d8b5cc33983fc74f78ad552b5522ab41442c4ca91606e4236eb4b5ceefc"
3925
"checksum pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3294f437119209b084c797604295f40227cffa35c57220b1e99a6ff3bf8ee4"
3926
"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
A
Alex Crichton 已提交
3927 3928 3929 3930
"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"
3931
"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c"
N
Niko Matsakis 已提交
3932
"checksum polonius-engine 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2490c396085801abf88df91758bad806b0890354f0875d624e62ecf0579a8145"
S
steveklabnik 已提交
3933
"checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
M
Mark Simulacrum 已提交
3934
"checksum pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a029430f0d744bc3d15dd474d591bed2402b645d024583082b9f63bb936dac6"
3935
"checksum pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df8b3f4e0475def7d9c2e5de8e5a1306949849761e107b360d03e98eafaffd61"
A
Alex Crichton 已提交
3936
"checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7"
N
Nick Cameron 已提交
3937
"checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09"
A
Alex Crichton 已提交
3938
"checksum proptest 0.8.7 (registry+https://github.com/rust-lang/crates.io-index)" = "926d0604475349f463fe44130aae73f2294b5309ab2ca0310b998bd334ef191f"
M
Manish Goregaokar 已提交
3939
"checksum pulldown-cmark 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d6fdf85cda6cadfae5428a54661d431330b312bc767ddbc57adbedc24da66e32"
3940
"checksum pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eef52fac62d0ea7b9b4dc7da092aa64ea7ec3d90af6679422d3d7e0e14b6ee15"
A
Alex Crichton 已提交
3941
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
O
Oliver Schneider 已提交
3942
"checksum quine-mc_cluskey 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45"
3943
"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
A
Alex Crichton 已提交
3944
"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8"
3945
"checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c"
I
Igor Matuszewski 已提交
3946
"checksum racer 2.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fbfcf2686b50f75a279cb42d9c6d253a1e68a475b415ea4baf7fb177ce94839a"
A
Alex Crichton 已提交
3947
"checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd"
3948
"checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c"
3949 3950 3951 3952 3953 3954 3955 3956
"checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
"checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
"checksum rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372"
"checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
"checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
"checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3"
A
Alex Crichton 已提交
3957
"checksum rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80e811e76f1dbf68abf87a759083d34600017fc4e10b6bd5ad84a700f9dba4b1"
N
Nick Cameron 已提交
3958
"checksum rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d24ad214285a7729b174ed6d3bcfcb80177807f959d95fafd5bfc5c4f201ac8"
3959
"checksum redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "679da7508e9a6390aeaf7fbd02a800fdc64b73fe2204dd2c8ae66d22d9d5ad5d"
O
Oliver Schneider 已提交
3960
"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
A
Alex Crichton 已提交
3961
"checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
3962
"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f"
A
Alex Crichton 已提交
3963
"checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"
3964
"checksum regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4e47a2ed29da7a9e1960e1639e7a982e6edc6d49be308a3b02daf511504a16d1"
A
Alex Crichton 已提交
3965
"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
N
Nick Cameron 已提交
3966
"checksum rls-analysis 0.16.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2de1187cceaf16d7642cc78835a2890b55b35ed9e8a8e3c6348a6297d8dd0fb1"
N
Nick Cameron 已提交
3967
"checksum rls-blacklist 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ce1fdac03e138c4617ff87b194e1ff57a39bb985a044ccbd8673d30701e411"
N
Nick Cameron 已提交
3968
"checksum rls-data 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a209ce46bb52813cbe0786a7baadc0c1a3f5543ef93f179eda3b841ed72cf2e"
N
Nick Cameron 已提交
3969
"checksum rls-rustc 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9dba7390427aefa953608429701e3665192ca810ba8ae09301e001b7c7bed0"
3970
"checksum rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d7c7046dc6a92f2ae02ed302746db4382e75131b9ce20ce967259f6b5867a6a"
N
Nick Cameron 已提交
3971
"checksum rls-vfs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "72d56425bd5aa86d9d4372b76f0381d3b4bda9c0220e71956c9fcc929f45c1f1"
I
Igor Matuszewski 已提交
3972 3973 3974 3975 3976 3977 3978 3979 3980
"checksum rustc-ap-arena 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cbfb540c1347a3993060896b18e0d64084203fa37aaffdc5e5c31264f275d476"
"checksum rustc-ap-graphviz 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "790ac657d5bf69be9ef56f6810e8a0238b07e8460a88526e11d41f8214eb6c4e"
"checksum rustc-ap-rustc_cratesio_shim 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b721cf32b543f3ee90240d7b757ca4a45930fe9981458a50678b4ccd75c472e2"
"checksum rustc-ap-rustc_data_structures 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4fa11df199d45ce948b07792ca593f59c1d19d2cb05d35c6b0a02271e772a416"
"checksum rustc-ap-rustc_errors 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b7ead3163ef995bbba520b88739e1d60f9ccf74fdacdda985067644c8134e827"
"checksum rustc-ap-rustc_target 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "688fef9cc27837755019b72b4f13e7a3d3e5012473475f377b75dbb1f07beb5f"
"checksum rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b2c0e8161e956647592a737074736e6ce05ea36b70c770ea8cca3eb9cb33737"
"checksum rustc-ap-syntax 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1adc189e5e4500a4167b9afa04e67067f40d0039e0e05870c977bebb561f065a"
"checksum rustc-ap-syntax_pos 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d42c430dbb0be4377bfe6aa5099074c63ac8796b24098562c2e2154aecc5652"
3981
"checksum rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "82ae957aa1b3055d8e086486723c0ccd3d7b8fa190ae8fa2e35543b6171c810e"
3982
"checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8"
J
John Kåre Alsaker 已提交
3983 3984
"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"
3985
"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
H
Hugues de Valon 已提交
3986
"checksum rustc_tools_util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c5a95edfa0c893236ae4778bb7c4752760e4c0d245e19b5eff33c5aa5eb9dc"
3987
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
E
Eric Huss 已提交
3988
"checksum rustfix 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "af7c21531a91512a4a51b490be6ba1c8eff34fdda0dc5bf87dc28d86748aac56"
A
Alex Crichton 已提交
3989
"checksum rusty-fork 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9591f190d2852720b679c21f66ad929f9f1d7bb09d1193c26167586029d8489c"
3990 3991
"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7"
"checksum same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267"
3992
"checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56"
A
Alex Crichton 已提交
3993
"checksum scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28"
O
Oliver Schneider 已提交
3994
"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
3995
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
3996
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
E
Eric Huss 已提交
3997
"checksum serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)" = "6fa52f19aee12441d5ad11c9a00459122bd8f98707cadf9778c540674f1935b6"
3998
"checksum serde_derive 1.0.81 (registry+https://github.com/rust-lang/crates.io-index)" = "477b13b646f5b5b56fc95bedfc3b550d12141ce84f466f6c44b9a17589923885"
3999
"checksum serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "190e9765dcedb56be63b6e0993a006c7e3b071a016a304736e4a315dc01fb142"
4000
"checksum serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "c37ccd6be3ed1fdf419ee848f7c758eb31b054d7cd3ae3600e3bae0adf569811"
A
Alex Crichton 已提交
4001
"checksum shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
S
steveklabnik 已提交
4002
"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
4003
"checksum signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4"
S
steveklabnik 已提交
4004
"checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
4005
"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
4006
"checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db"
4007
"checksum socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7"
A
Alex Crichton 已提交
4008 4009 4010
"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 已提交
4011
"checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
A
Aleksey Kladov 已提交
4012
"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
4013 4014
"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"
4015
"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
4016
"checksum syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)" = "ae8b29eb5210bc5cf63ed6149cbf9adfc82ac0be023d8735c176ee74a2db4da7"
4017
"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
4018
"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
4019 4020
"checksum tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "a303ba60a099fcd2aaa646b14d2724591a96a75283e4b7ed3d1a1658909d9ae2"
"checksum tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2"
S
steveklabnik 已提交
4021
"checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
A
Alan Du 已提交
4022
"checksum term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6b677dd1e8214ea1ef4297f85dbcbed8e8cdddb561040cc998ca2551c37561"
4023
"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
O
Oliver Schneider 已提交
4024
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
A
Alex Crichton 已提交
4025
"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
A
Alex Crichton 已提交
4026
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
A
Alex Crichton 已提交
4027
"checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041
"checksum tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4790d0be6f4ba6ae4f48190efa2ed7780c9e3567796abdb285003cf39840d9c5"
"checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f"
"checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6"
"checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0"
"checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d"
"checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f"
"checksum tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "88e1281e412013f1ff5787def044a9577a0bed059f451e835f1643201f8b777d"
"checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f"
"checksum tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296"
"checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119"
"checksum tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "17465013014410310f9f61fa10bf4724803c149ea1d51efece131c38efca93aa"
"checksum tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4f37f0111d76cc5da132fe9bc0590b9b9cfd079bc7e75ac3846278430a299ff8"
"checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92"
"checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445"
4042
"checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
S
steveklabnik 已提交
4043
"checksum toml-query 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6854664bfc6df0360c695480836ee90e2d0c965f06db291d10be9344792d43e8"
E
Eric Huss 已提交
4044
"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
4045
"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
S
steveklabnik 已提交
4046
"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
A
Alex Crichton 已提交
4047 4048
"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 已提交
4049
"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
4050
"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
A
Alex Crichton 已提交
4051
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
N
Nick Cameron 已提交
4052
"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
4053
"checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
4054
"checksum url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "74e7d099f1ee52f823d4bdd60c93c3602043c728f5db3b97bdb548467f7bddea"
S
steveklabnik 已提交
4055
"checksum utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c"
4056
"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
A
Alex Crichton 已提交
4057
"checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d"
A
Alex Crichton 已提交
4058
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
R
Ralf Jung 已提交
4059
"checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba"
4060
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
S
Steve Klabnik 已提交
4061
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
A
Alex Crichton 已提交
4062
"checksum wait-timeout 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b9f3bf741a801531993db6478b95682117471f76916f5e690dd8d45395b09349"
4063
"checksum walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1"
4064
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
4065
"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
4066
"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
4067
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
A
Alex Crichton 已提交
4068
"checksum winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab"
4069
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
A
Alex Crichton 已提交
4070
"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
4071
"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
A
Alex Crichton 已提交
4072
"checksum xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
A
Alex Crichton 已提交
4073
"checksum xz2 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "df8bf41d3030c3577c9458fd6640a05afbf43b150d0b531b16bd77d3f794f27a"
4074
"checksum yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"