Cargo.lock 112.0 KB
Newer Older
1 2
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
3 4 5 6
[[package]]
name = "adler32"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
7
checksum = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c"
8

E
Eric Huss 已提交
9 10 11 12
[[package]]
name = "aho-corasick"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
13
checksum = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c"
E
Eric Huss 已提交
14
dependencies = [
15
 "memchr",
E
Eric Huss 已提交
16 17
]

18 19 20 21
[[package]]
name = "alloc"
version = "0.0.0"
dependencies = [
22 23 24 25
 "compiler_builtins",
 "core",
 "rand 0.7.0",
 "rand_xorshift 0.2.0",
26 27
]

S
steveklabnik 已提交
28 29
[[package]]
name = "ammonia"
30
version = "3.0.0"
E
Eric Huss 已提交
31
source = "registry+https://github.com/rust-lang/crates.io-index"
32
checksum = "9e266e1f4be5ffa05309f650e2586fe1d3ae6034eb24025a7ae1dfecc330823a"
E
Eric Huss 已提交
33
dependencies = [
34 35 36 37 38
 "html5ever",
 "lazy_static 1.3.0",
 "maplit",
 "matches",
 "tendril",
39
 "url 2.1.0",
E
Eric Huss 已提交
40 41
]

42 43 44 45
[[package]]
name = "annotate-snippets"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
46
checksum = "c7021ce4924a3f25f802b2cccd1af585e39ea1a363a1aa2e72afe54b67a3a7a7"
I
Igor Matuszewski 已提交
47
dependencies = [
48
 "ansi_term",
I
Igor Matuszewski 已提交
49
]
50

51 52
[[package]]
name = "ansi_term"
A
Aleksey Kladov 已提交
53
version = "0.11.0"
54
source = "registry+https://github.com/rust-lang/crates.io-index"
55
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
A
Aleksey Kladov 已提交
56
dependencies = [
57
 "winapi 0.3.6",
A
Aleksey Kladov 已提交
58
]
59

60 61 62 63
[[package]]
name = "arc-swap"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
64
checksum = "1025aeae2b664ca0ea726a89d574fe8f4e77dd712d443236ad1de00379450cf6"
65

66 67 68
[[package]]
name = "arena"
version = "0.0.0"
J
John Kåre Alsaker 已提交
69
dependencies = [
70
 "rustc_data_structures",
R
Ralf Jung 已提交
71
 "smallvec 1.0.0",
J
John Kåre Alsaker 已提交
72
]
73

F
flip1995 已提交
74 75 76 77
[[package]]
name = "argon2rs"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
78
checksum = "3f67b0b6a86dae6e67ff4ca2b6201396074996379fba2b92ff649126f37cb392"
F
flip1995 已提交
79
dependencies = [
80 81
 "blake2-rfc",
 "scoped_threadpool",
F
flip1995 已提交
82 83
]

84 85 86 87
[[package]]
name = "arrayref"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
88
checksum = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
89

N
Nick Cameron 已提交
90 91 92 93
[[package]]
name = "arrayvec"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
94
checksum = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
N
Nick Cameron 已提交
95
dependencies = [
96
 "nodrop",
N
Nick Cameron 已提交
97 98
]

99 100
[[package]]
name = "atty"
R
Ralf Jung 已提交
101
version = "0.2.11"
102
source = "registry+https://github.com/rust-lang/crates.io-index"
103
checksum = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
104
dependencies = [
105 106 107
 "libc",
 "termion",
 "winapi 0.3.6",
108 109
]

110 111 112 113 114 115
[[package]]
name = "autocfg"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875"

116 117
[[package]]
name = "backtrace"
T
Tyler Mandry 已提交
118
version = "0.3.40"
119
source = "registry+https://github.com/rust-lang/crates.io-index"
T
Tyler Mandry 已提交
120
checksum = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
121
dependencies = [
122 123 124 125 126 127
 "backtrace-sys",
 "cfg-if",
 "compiler_builtins",
 "libc",
 "rustc-demangle",
 "rustc-std-workspace-core",
128 129 130 131
]

[[package]]
name = "backtrace-sys"
T
Tyler Mandry 已提交
132
version = "0.1.32"
133
source = "registry+https://github.com/rust-lang/crates.io-index"
T
Tyler Mandry 已提交
134
checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
135
dependencies = [
136 137 138 139
 "cc",
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
140 141
]

142 143 144 145
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
146
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
147
dependencies = [
148
 "byteorder",
149 150
]

151 152
[[package]]
name = "bitflags"
V
varkor 已提交
153
version = "1.2.1"
154
source = "registry+https://github.com/rust-lang/crates.io-index"
V
varkor 已提交
155
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
156

F
flip1995 已提交
157 158 159 160
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
161
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
F
flip1995 已提交
162
dependencies = [
163 164
 "arrayvec",
 "constant_time_eq",
F
flip1995 已提交
165 166
]

167 168 169 170
[[package]]
name = "block-buffer"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
171
checksum = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab"
172
dependencies = [
173 174
 "arrayref",
 "byte-tools",
175 176
]

177 178 179 180
[[package]]
name = "bootstrap"
version = "0.0.0"
dependencies = [
181 182 183 184 185 186 187 188 189 190 191 192 193
 "build_helper",
 "cc",
 "cmake",
 "filetime",
 "getopts",
 "lazy_static 1.3.0",
 "libc",
 "num_cpus",
 "petgraph",
 "pretty_assertions",
 "serde",
 "serde_json",
 "time",
E
Eric Huss 已提交
194
 "toml",
195 196
]

E
Eric Huss 已提交
197 198 199 200
[[package]]
name = "bstr"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
201
checksum = "853b090ce0f45d0265902666bf88039ea3da825e33796716c511a1ec9c170036"
E
Eric Huss 已提交
202
dependencies = [
203
 "memchr",
E
Eric Huss 已提交
204 205
]

206 207 208 209
[[package]]
name = "build-manifest"
version = "0.1.0"
dependencies = [
210
 "serde",
211
 "serde_json",
E
Eric Huss 已提交
212
 "toml",
213 214
]

215 216 217 218
[[package]]
name = "build_const"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
219
checksum = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39"
220

221 222 223 224
[[package]]
name = "build_helper"
version = "0.1.0"

225 226 227 228
[[package]]
name = "byte-tools"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
229
checksum = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40"
230

231 232
[[package]]
name = "bytecount"
233
version = "0.6.0"
234
source = "registry+https://github.com/rust-lang/crates.io-index"
235
checksum = "b0017894339f586ccb943b01b9555de56770c11cda818e7e3d8bd93f4ed7f46e"
236
dependencies = [
237
 "packed_simd",
238 239
]

240 241
[[package]]
name = "byteorder"
R
Ralf Jung 已提交
242
version = "1.3.2"
243
source = "registry+https://github.com/rust-lang/crates.io-index"
R
Ralf Jung 已提交
244
checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
245

246 247 248 249
[[package]]
name = "bytes"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
250
checksum = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
251
dependencies = [
252 253 254
 "byteorder",
 "either",
 "iovec",
255 256
]

A
Alex Crichton 已提交
257 258 259 260
[[package]]
name = "bytesize"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
261
checksum = "716960a18f978640f25101b5cbf1c6f6b0d3192fab36a2d98ca96f0ecbe41010"
A
Alex Crichton 已提交
262

G
gnzlbg 已提交
263 264 265 266
[[package]]
name = "c2-chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
267
checksum = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101"
G
gnzlbg 已提交
268
dependencies = [
269 270
 "lazy_static 1.3.0",
 "ppv-lite86",
G
gnzlbg 已提交
271 272
]

273 274
[[package]]
name = "cargo"
275
version = "0.41.0"
276
dependencies = [
277 278
 "atty",
 "bytesize",
A
Alex Crichton 已提交
279
 "cargo-platform",
280
 "cargo-test-macro",
A
Aaron Hill 已提交
281
 "cargo-test-support",
282 283 284 285 286 287 288
 "clap",
 "core-foundation",
 "crates-io",
 "crossbeam-utils 0.6.5",
 "crypto-hash",
 "curl",
 "curl-sys",
R
Ralf Jung 已提交
289
 "env_logger 0.7.1",
290 291 292 293 294 295 296 297
 "failure",
 "filetime",
 "flate2",
 "fs2",
 "fwdansi",
 "git2",
 "git2-curl",
 "glob",
A
Aaron Hill 已提交
298
 "hex 0.4.0",
299
 "home",
A
Aaron Hill 已提交
300
 "humantime",
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
 "ignore",
 "im-rc",
 "jobserver",
 "lazy_static 1.3.0",
 "lazycell",
 "libc",
 "libgit2-sys",
 "log",
 "memchr",
 "miow 0.3.3",
 "num_cpus",
 "opener",
 "openssl",
 "percent-encoding 2.0.0",
 "pretty_env_logger",
 "remove_dir_all",
 "rustc-workspace-hack",
 "rustfix",
 "same-file",
 "semver",
 "serde",
322
 "serde_ignored",
323 324 325 326 327 328
 "serde_json",
 "shell-escape",
 "strip-ansi-escapes",
 "tar",
 "tempfile",
 "termcolor",
E
Eric Huss 已提交
329
 "toml",
330
 "unicode-width",
F
flip1995 已提交
331
 "url 2.1.0",
332 333
 "walkdir",
 "winapi 0.3.6",
334 335
]

A
Alex Crichton 已提交
336 337 338 339 340 341 342
[[package]]
name = "cargo-platform"
version = "0.1.0"
dependencies = [
 "serde",
]

E
Eric Huss 已提交
343 344 345 346
[[package]]
name = "cargo-test-macro"
version = "0.1.0"

A
Aaron Hill 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
[[package]]
name = "cargo-test-support"
version = "0.1.0"
dependencies = [
 "cargo",
 "cargo-test-macro",
 "filetime",
 "flate2",
 "git2",
 "glob",
 "lazy_static 1.3.0",
 "remove_dir_all",
 "serde_json",
 "tar",
 "url 2.1.0",
]

M
Manish Goregaokar 已提交
364 365 366 367
[[package]]
name = "cargo_metadata"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
368
checksum = "929766d993a2fde7a0ae962ee82429069cd7b68839cd9375b98efd719df65d3a"
M
Manish Goregaokar 已提交
369
dependencies = [
370 371 372 373 374
 "failure",
 "semver",
 "serde",
 "serde_derive",
 "serde_json",
M
Manish Goregaokar 已提交
375 376
]

M
Manish Goregaokar 已提交
377 378 379 380 381 382 383 384 385 386 387 388
[[package]]
name = "cargo_metadata"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d2d1617e838936c0d2323a65cc151e03ae19a7678dd24f72bccf27119b90a5d"
dependencies = [
 "semver",
 "serde",
 "serde_derive",
 "serde_json",
]

A
Alex Crichton 已提交
389 390 391 392
[[package]]
name = "cargotest2"
version = "0.1.0"

N
Nick Cameron 已提交
393 394
[[package]]
name = "cc"
T
Tyler Mandry 已提交
395
version = "1.0.37"
N
Nick Cameron 已提交
396
source = "registry+https://github.com/rust-lang/crates.io-index"
T
Tyler Mandry 已提交
397
checksum = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
N
Nick Cameron 已提交
398

399 400
[[package]]
name = "cfg-if"
401
version = "0.1.8"
402
source = "registry+https://github.com/rust-lang/crates.io-index"
403
checksum = "89431bba4e6b7092fb5fcd00a6f6ca596c55cc26b2f1e6dcdd08a1f4933f66b2"
404
dependencies = [
405 406
 "compiler_builtins",
 "rustc-std-workspace-core",
407
]
408

409 410
[[package]]
name = "chalk-engine"
S
scalexm 已提交
411
version = "0.9.0"
412
source = "registry+https://github.com/rust-lang/crates.io-index"
413
checksum = "17ec698a6f053a23bfbe646d9f2fde4b02abc19125595270a99e6f44ae0bdd1a"
414
dependencies = [
415 416
 "chalk-macros",
 "rustc-hash",
417 418 419 420 421 422
]

[[package]]
name = "chalk-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
423
checksum = "295635afd6853aa9f20baeb7f0204862440c0fe994c5a253d5f479dac41d047e"
424
dependencies = [
425
 "lazy_static 0.2.11",
426 427
]

A
Alex Crichton 已提交
428 429
[[package]]
name = "chrono"
430
version = "0.4.6"
A
Alex Crichton 已提交
431
source = "registry+https://github.com/rust-lang/crates.io-index"
432
checksum = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878"
A
Alex Crichton 已提交
433
dependencies = [
434 435 436
 "num-integer",
 "num-traits",
 "time",
A
Alex Crichton 已提交
437 438
]

439 440
[[package]]
name = "clap"
441
version = "2.33.0"
442
source = "registry+https://github.com/rust-lang/crates.io-index"
443
checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
444
dependencies = [
445 446 447 448 449 450 451 452
 "ansi_term",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
 "yaml-rust",
453 454
]

O
Oliver Schneider 已提交
455 456
[[package]]
name = "clippy"
O
Oliver Schneider 已提交
457
version = "0.0.212"
O
Oliver Schneider 已提交
458
dependencies = [
M
Manish Goregaokar 已提交
459
 "cargo_metadata 0.9.0",
460 461 462 463 464 465 466
 "clippy-mini-macro-test",
 "clippy_lints",
 "compiletest_rs",
 "derive-new",
 "lazy_static 1.3.0",
 "regex",
 "rustc-workspace-hack",
O
Oliver Scherer 已提交
467
 "rustc_tools_util 0.2.0",
468 469
 "semver",
 "serde",
O
Oliver Schneider 已提交
470 471 472 473
]

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

O
Oliver Schneider 已提交
476 477
[[package]]
name = "clippy_lints"
O
Oliver Schneider 已提交
478
version = "0.0.212"
479
dependencies = [
M
Manish Goregaokar 已提交
480
 "cargo_metadata 0.9.0",
481 482 483 484
 "if_chain",
 "itertools 0.8.0",
 "lazy_static 1.3.0",
 "matches",
L
Lzu Tao 已提交
485
 "pulldown-cmark 0.6.0",
486 487 488 489
 "quine-mc_cluskey",
 "regex-syntax",
 "semver",
 "serde",
R
Ralf Jung 已提交
490
 "smallvec 0.6.10",
E
Eric Huss 已提交
491
 "toml",
492
 "unicode-normalization",
F
flip1995 已提交
493
 "url 2.1.0",
494 495
]

K
kennytm 已提交
496 497 498 499
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
500
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
K
kennytm 已提交
501
dependencies = [
502
 "bitflags",
K
kennytm 已提交
503 504
]

505 506
[[package]]
name = "cmake"
J
John Kåre Alsaker 已提交
507
version = "0.1.38"
508
source = "registry+https://github.com/rust-lang/crates.io-index"
509
checksum = "96210eec534fc3fbfc0452a63769424eaa80205fda6cea98e5b61cb3d97bcec8"
510
dependencies = [
511
 "cc",
512 513
]

N
Nick Cameron 已提交
514 515 516 517
[[package]]
name = "colored"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
518
checksum = "b0aa3473e85a3161b59845d6096b289bb577874cafeaf75ea1b1beaa6572c7fc"
N
Nick Cameron 已提交
519
dependencies = [
520
 "lazy_static 0.2.11",
N
Nick Cameron 已提交
521 522
]

O
Oliver Schneider 已提交
523 524 525 526
[[package]]
name = "commoncrypto"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
527
checksum = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007"
O
Oliver Schneider 已提交
528
dependencies = [
529
 "commoncrypto-sys",
O
Oliver Schneider 已提交
530 531 532 533 534 535
]

[[package]]
name = "commoncrypto-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
536
checksum = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2"
O
Oliver Schneider 已提交
537
dependencies = [
538
 "libc",
539 540
]

541 542
[[package]]
name = "compiler_builtins"
B
bjorn3 已提交
543
version = "0.1.18"
544
source = "registry+https://github.com/rust-lang/crates.io-index"
545
checksum = "ef1c086a06d6f52f9c0d50cacdc021bfb6034ddeec9fb7e62f099f13f65472f4"
546
dependencies = [
547 548
 "cc",
 "rustc-std-workspace-core",
549 550
]

551 552 553 554
[[package]]
name = "compiletest"
version = "0.0.0"
dependencies = [
555
 "diff",
R
Ralf Jung 已提交
556
 "env_logger 0.7.1",
557 558 559 560 561 562 563 564 565 566 567
 "getopts",
 "lazy_static 1.3.0",
 "libc",
 "log",
 "miow 0.3.3",
 "regex",
 "rustfix",
 "serde",
 "serde_json",
 "walkdir",
 "winapi 0.3.6",
568 569
]

N
Nick Cameron 已提交
570
[[package]]
O
Oliver Schneider 已提交
571
name = "compiletest_rs"
L
Lzu Tao 已提交
572
version = "0.3.25"
573
source = "registry+https://github.com/rust-lang/crates.io-index"
L
Lzu Tao 已提交
574
checksum = "f75b10a18fb53549fdd090846eb01c7f8593914494d1faabc4d3005c436e417a"
575
dependencies = [
576 577 578 579 580 581 582 583 584 585 586 587 588
 "diff",
 "filetime",
 "getopts",
 "libc",
 "log",
 "miow 0.3.3",
 "regex",
 "rustfix",
 "serde",
 "serde_derive",
 "serde_json",
 "tempfile",
 "winapi 0.3.6",
589 590
]

F
flip1995 已提交
591 592 593 594
[[package]]
name = "constant_time_eq"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
595
checksum = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
F
flip1995 已提交
596

597 598 599
[[package]]
name = "core"
version = "0.0.0"
A
Alex Crichton 已提交
600
dependencies = [
601
 "rand 0.7.0",
A
Alex Crichton 已提交
602
]
603

N
Nick Cameron 已提交
604 605
[[package]]
name = "core-foundation"
606
version = "0.6.3"
N
Nick Cameron 已提交
607
source = "registry+https://github.com/rust-lang/crates.io-index"
608
checksum = "4e2640d6d0bf22e82bed1b73c6aef8d5dd31e5abe6666c57e6d45e2649f4f887"
N
Nick Cameron 已提交
609
dependencies = [
610 611
 "core-foundation-sys",
 "libc",
N
Nick Cameron 已提交
612 613 614 615
]

[[package]]
name = "core-foundation-sys"
616
version = "0.6.2"
N
Nick Cameron 已提交
617
source = "registry+https://github.com/rust-lang/crates.io-index"
618
checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
N
Nick Cameron 已提交
619

620 621
[[package]]
name = "crates-io"
622
version = "0.29.0"
623
dependencies = [
624 625 626 627 628 629
 "curl",
 "failure",
 "percent-encoding 2.0.0",
 "serde",
 "serde_derive",
 "serde_json",
F
flip1995 已提交
630
 "url 2.1.0",
631 632
]

633
[[package]]
634 635
name = "crc"
version = "1.8.1"
636
source = "registry+https://github.com/rust-lang/crates.io-index"
637
checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb"
638
dependencies = [
639
 "build_const",
640 641 642 643 644 645
]

[[package]]
name = "crc32fast"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
646
checksum = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192"
647
dependencies = [
648
 "cfg-if",
649
]
650

651 652
[[package]]
name = "crossbeam-channel"
E
Eric Huss 已提交
653
version = "0.3.8"
654
source = "registry+https://github.com/rust-lang/crates.io-index"
655
checksum = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b"
656
dependencies = [
657
 "crossbeam-utils 0.6.5",
R
Ralf Jung 已提交
658
 "smallvec 0.6.10",
659 660
]

N
Nick Cameron 已提交
661 662 663 664
[[package]]
name = "crossbeam-deque"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
665
checksum = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
N
Nick Cameron 已提交
666
dependencies = [
667 668
 "crossbeam-epoch 0.3.1",
 "crossbeam-utils 0.2.2",
N
Nick Cameron 已提交
669 670
]

671 672 673 674
[[package]]
name = "crossbeam-deque"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
675
checksum = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
676
dependencies = [
677 678
 "crossbeam-epoch 0.7.2",
 "crossbeam-utils 0.6.5",
679 680
]

J
Josh Stone 已提交
681 682 683 684 685 686 687 688 689 690
[[package]]
name = "crossbeam-deque"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71"
dependencies = [
 "crossbeam-epoch 0.7.2",
 "crossbeam-utils 0.6.5",
]

N
Nick Cameron 已提交
691 692
[[package]]
name = "crossbeam-epoch"
A
Alex Crichton 已提交
693
version = "0.3.1"
N
Nick Cameron 已提交
694
source = "registry+https://github.com/rust-lang/crates.io-index"
695
checksum = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150"
N
Nick Cameron 已提交
696
dependencies = [
697 698 699 700 701 702 703
 "arrayvec",
 "cfg-if",
 "crossbeam-utils 0.2.2",
 "lazy_static 1.3.0",
 "memoffset 0.2.1",
 "nodrop",
 "scopeguard 0.3.3",
N
Nick Cameron 已提交
704 705
]

706 707
[[package]]
name = "crossbeam-epoch"
R
Ralf Jung 已提交
708
version = "0.7.2"
709
source = "registry+https://github.com/rust-lang/crates.io-index"
710
checksum = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9"
711
dependencies = [
712 713 714 715 716 717
 "arrayvec",
 "cfg-if",
 "crossbeam-utils 0.6.5",
 "lazy_static 1.3.0",
 "memoffset 0.5.1",
 "scopeguard 1.0.0",
718 719
]

720 721 722 723
[[package]]
name = "crossbeam-queue"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
724
checksum = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
725
dependencies = [
726
 "crossbeam-utils 0.6.5",
727 728
]

N
Nick Cameron 已提交
729 730 731 732
[[package]]
name = "crossbeam-utils"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
733
checksum = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
N
Nick Cameron 已提交
734
dependencies = [
735
 "cfg-if",
N
Nick Cameron 已提交
736 737
]

A
Alex Crichton 已提交
738 739
[[package]]
name = "crossbeam-utils"
E
Eric Huss 已提交
740
version = "0.6.5"
A
Alex Crichton 已提交
741
source = "registry+https://github.com/rust-lang/crates.io-index"
742
checksum = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c"
A
Alex Crichton 已提交
743
dependencies = [
744 745
 "cfg-if",
 "lazy_static 1.3.0",
A
Alex Crichton 已提交
746 747
]

O
Oliver Schneider 已提交
748 749
[[package]]
name = "crypto-hash"
A
Alex Crichton 已提交
750
version = "0.3.1"
O
Oliver Schneider 已提交
751
source = "registry+https://github.com/rust-lang/crates.io-index"
752
checksum = "09de9ee0fc255ace04c7fa0763c9395a945c37c8292bb554f8d48361d1dcf1b4"
O
Oliver Schneider 已提交
753
dependencies = [
754
 "commoncrypto",
A
Aaron Hill 已提交
755
 "hex 0.3.2",
756 757
 "openssl",
 "winapi 0.3.6",
O
Oliver Schneider 已提交
758 759
]

760 761
[[package]]
name = "curl"
762
version = "0.4.24"
763
source = "registry+https://github.com/rust-lang/crates.io-index"
764
checksum = "d08ad3cb89d076a36b0ce5749eec2c9964f70c0c58480ab6b75a91ec4fc206d8"
765
dependencies = [
766 767 768 769 770 771
 "curl-sys",
 "libc",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "socket2",
772
 "winapi 0.3.6",
773 774 775 776
]

[[package]]
name = "curl-sys"
777
version = "0.4.22"
778
source = "registry+https://github.com/rust-lang/crates.io-index"
779
checksum = "2e9a9a4e417722876332136a00cacf92c2ceb331fab4b52b6a1ad16c6cd79255"
780
dependencies = [
781 782 783 784 785 786 787 788
 "cc",
 "libc",
 "libnghttp2-sys",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
 "vcpkg",
 "winapi 0.3.6",
789 790
]

E
Eric Huss 已提交
791 792 793 794
[[package]]
name = "darling"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
795
checksum = "9158d690bc62a3a57c3e45b85e4d50de2008b39345592c64efd79345c7e24be0"
E
Eric Huss 已提交
796
dependencies = [
797 798
 "darling_core",
 "darling_macro",
E
Eric Huss 已提交
799 800 801 802 803 804
]

[[package]]
name = "darling_core"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
805
checksum = "d2a368589465391e127e10c9e3a08efc8df66fd49b87dc8524c764bbe7f2ef82"
E
Eric Huss 已提交
806
dependencies = [
807 808
 "fnv",
 "ident_case",
809 810 811
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
E
Eric Huss 已提交
812 813 814 815 816 817
]

[[package]]
name = "darling_macro"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
818
checksum = "244e8987bd4e174385240cde20a3657f607fb0797563c28255c353b5819a07b1"
E
Eric Huss 已提交
819
dependencies = [
820
 "darling_core",
821 822
 "quote 0.6.12",
 "syn 0.15.35",
E
Eric Huss 已提交
823 824
]

D
Douglas Campos 已提交
825 826
[[package]]
name = "datafrog"
N
Niko Matsakis 已提交
827
version = "2.0.1"
D
Douglas Campos 已提交
828
source = "registry+https://github.com/rust-lang/crates.io-index"
829
checksum = "a0afaad2b26fa326569eb264b1363e8ae3357618c43982b3f285f0774ce76b69"
D
Douglas Campos 已提交
830

831 832
[[package]]
name = "derive-new"
833
version = "0.5.6"
834
source = "registry+https://github.com/rust-lang/crates.io-index"
835
checksum = "6ca414e896ae072546f4d789f452daaecf60ddee4c9df5dc6d5936d769e3d87c"
836
dependencies = [
837 838 839
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
840 841
]

K
kennytm 已提交
842 843
[[package]]
name = "derive_more"
N
Nick Cameron 已提交
844
version = "0.13.0"
K
kennytm 已提交
845
source = "registry+https://github.com/rust-lang/crates.io-index"
846
checksum = "3f57d78cf3bd45270dad4e70c21ec77a960b36c7a841ff9db76aaa775a8fb871"
K
kennytm 已提交
847
dependencies = [
848 849
 "proc-macro2 0.4.30",
 "quote 0.6.12",
850
 "rustc_version",
851
 "syn 0.15.35",
K
kennytm 已提交
852 853
]

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

M
Mark Simulacrum 已提交
860 861 862 863
[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
864
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
M
Mark Simulacrum 已提交
865

866 867 868 869
[[package]]
name = "digest"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
870
checksum = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90"
871
dependencies = [
872
 "generic-array",
873 874
]

R
Ralf Jung 已提交
875 876
[[package]]
name = "directories"
R
Ralf Jung 已提交
877
version = "2.0.1"
R
Ralf Jung 已提交
878
source = "registry+https://github.com/rust-lang/crates.io-index"
879
checksum = "2ccc83e029c3cebb4c8155c644d34e3a070ccdb4ff90d369c74cd73f7cb3c984"
R
Ralf Jung 已提交
880
dependencies = [
881 882
 "cfg-if",
 "dirs-sys",
R
Ralf Jung 已提交
883 884
]

F
flip1995 已提交
885 886
[[package]]
name = "dirs"
T
topecongiro 已提交
887
version = "2.0.1"
F
flip1995 已提交
888
source = "registry+https://github.com/rust-lang/crates.io-index"
889
checksum = "1c4ef5a8b902d393339e2a2c7fe573af92ce7e0ee5a3ff827b4c9ad7e07e4fa1"
F
flip1995 已提交
890
dependencies = [
891 892
 "cfg-if",
 "dirs-sys",
F
flip1995 已提交
893 894
]

R
Ralf Jung 已提交
895 896 897 898
[[package]]
name = "dirs-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
899
checksum = "937756392ec77d1f2dd9dc3ac9d69867d109a2121479d72c364e42f4cab21e2d"
R
Ralf Jung 已提交
900
dependencies = [
901 902 903 904
 "cfg-if",
 "libc",
 "redox_users",
 "winapi 0.3.6",
R
Ralf Jung 已提交
905 906
]

O
Oliver Schneider 已提交
907 908
[[package]]
name = "dlmalloc"
J
Jethro Beekman 已提交
909
version = "0.1.3"
910
source = "registry+https://github.com/rust-lang/crates.io-index"
911
checksum = "f283302e035e61c23f2b86b3093e8c6273a4c3125742d6087e96ade001ca5e63"
O
Oliver Schneider 已提交
912
dependencies = [
913 914 915
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
O
Oliver Schneider 已提交
916 917
]

918 919 920 921
[[package]]
name = "dtoa"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
922
checksum = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e"
923

O
Oliver Schneider 已提交
924 925
[[package]]
name = "either"
A
Alex Crichton 已提交
926
version = "1.5.0"
O
Oliver Schneider 已提交
927
source = "registry+https://github.com/rust-lang/crates.io-index"
928
checksum = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
O
Oliver Schneider 已提交
929

S
steveklabnik 已提交
930 931
[[package]]
name = "elasticlunr-rs"
932
version = "2.3.4"
S
steveklabnik 已提交
933
source = "registry+https://github.com/rust-lang/crates.io-index"
934
checksum = "a99a310cd1f9770e7bf8e48810c7bcbb0e078c8fb23a8c7bcf0da4c2bf61a455"
S
steveklabnik 已提交
935
dependencies = [
936 937 938 939 940 941 942
 "lazy_static 1.3.0",
 "regex",
 "serde",
 "serde_derive",
 "serde_json",
 "strum",
 "strum_macros",
S
steveklabnik 已提交
943 944
]

V
varkor 已提交
945 946
[[package]]
name = "ena"
947
version = "0.13.1"
V
varkor 已提交
948
source = "registry+https://github.com/rust-lang/crates.io-index"
949
checksum = "8944dc8fa28ce4a38f778bd46bf7d923fe73eed5a439398507246c8e017e6f36"
V
varkor 已提交
950
dependencies = [
951
 "log",
V
varkor 已提交
952 953
]

954 955 956 957
[[package]]
name = "encoding_rs"
version = "0.8.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
958
checksum = "4155785c79f2f6701f185eb2e6b4caf0555ec03477cb4c70db67b465311620ed"
959
dependencies = [
960
 "cfg-if",
961 962
]

A
Alex Crichton 已提交
963 964
[[package]]
name = "env_logger"
M
Mateusz Mikuła 已提交
965
version = "0.6.2"
A
Alex Crichton 已提交
966
source = "registry+https://github.com/rust-lang/crates.io-index"
M
Mateusz Mikuła 已提交
967
checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
A
Alex Crichton 已提交
968
dependencies = [
969 970 971 972 973
 "atty",
 "humantime",
 "log",
 "regex",
 "termcolor",
A
Alex Crichton 已提交
974 975
]

A
Alex Crichton 已提交
976 977
[[package]]
name = "env_logger"
R
Ralf Jung 已提交
978
version = "0.7.1"
A
Alex Crichton 已提交
979
source = "registry+https://github.com/rust-lang/crates.io-index"
R
Ralf Jung 已提交
980
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
A
Alex Crichton 已提交
981 982 983 984 985 986 987 988
dependencies = [
 "atty",
 "humantime",
 "log",
 "regex",
 "termcolor",
]

R
Ralf Jung 已提交
989 990 991 992
[[package]]
name = "error-chain"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
993
checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
R
Ralf Jung 已提交
994
dependencies = [
995
 "backtrace",
R
Ralf Jung 已提交
996 997
]

998 999 1000
[[package]]
name = "error_index_generator"
version = "0.0.0"
M
Mark Simulacrum 已提交
1001
dependencies = [
1002
 "rustdoc",
1003
 "walkdir",
M
Mark Simulacrum 已提交
1004
]
1005

A
Alex Crichton 已提交
1006 1007
[[package]]
name = "failure"
E
Eric Huss 已提交
1008
version = "0.1.5"
A
Alex Crichton 已提交
1009
source = "registry+https://github.com/rust-lang/crates.io-index"
1010
checksum = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
A
Alex Crichton 已提交
1011
dependencies = [
1012 1013
 "backtrace",
 "failure_derive",
A
Alex Crichton 已提交
1014 1015 1016 1017
]

[[package]]
name = "failure_derive"
E
Eric Huss 已提交
1018
version = "0.1.5"
A
Alex Crichton 已提交
1019
source = "registry+https://github.com/rust-lang/crates.io-index"
1020
checksum = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
A
Alex Crichton 已提交
1021
dependencies = [
1022 1023 1024
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
1025
 "synstructure 0.10.2",
A
Alex Crichton 已提交
1026 1027
]

1028 1029 1030 1031
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1032
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
1033

A
Alex Crichton 已提交
1034 1035
[[package]]
name = "filetime"
1036
version = "0.2.4"
A
Alex Crichton 已提交
1037
source = "registry+https://github.com/rust-lang/crates.io-index"
1038
checksum = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646"
A
Alex Crichton 已提交
1039
dependencies = [
1040 1041 1042
 "cfg-if",
 "libc",
 "redox_syscall",
A
Alex Crichton 已提交
1043 1044
]

1045 1046 1047 1048
[[package]]
name = "fixedbitset"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
1049
checksum = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
1050

F
Felix Schütt 已提交
1051 1052
[[package]]
name = "flate2"
1053
version = "1.0.6"
F
Felix Schütt 已提交
1054
source = "registry+https://github.com/rust-lang/crates.io-index"
1055
checksum = "2291c165c8e703ee54ef3055ad6188e3d51108e2ded18e9f2476e774fc5ad3d4"
F
Felix Schütt 已提交
1056
dependencies = [
1057 1058 1059 1060 1061
 "crc32fast",
 "libc",
 "libz-sys",
 "miniz-sys",
 "miniz_oxide_c_api",
F
Felix Schütt 已提交
1062 1063
]

1064 1065 1066
[[package]]
name = "fmt_macros"
version = "0.0.0"
1067
dependencies = [
1068
 "rustc_lexer",
1069
 "syntax_pos",
1070
]
1071

1072 1073
[[package]]
name = "fnv"
O
Oliver Schneider 已提交
1074
version = "1.0.6"
1075
source = "registry+https://github.com/rust-lang/crates.io-index"
1076
checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
1077

1078 1079
[[package]]
name = "foreign-types"
O
Oliver Schneider 已提交
1080 1081
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1082
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
O
Oliver Schneider 已提交
1083
dependencies = [
1084
 "foreign-types-shared",
O
Oliver Schneider 已提交
1085 1086 1087 1088 1089
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
1090
source = "registry+https://github.com/rust-lang/crates.io-index"
1091
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1092

1093 1094
[[package]]
name = "fortanix-sgx-abi"
1095
version = "0.3.2"
1096
source = "registry+https://github.com/rust-lang/crates.io-index"
1097
checksum = "3f8cbee5e872cf7db61a999a041f9bc4706ca7bf7df4cb914f53fabb1c1bc550"
1098
dependencies = [
1099 1100
 "compiler_builtins",
 "rustc-std-workspace-core",
1101 1102
]

1103 1104
[[package]]
name = "fs2"
1105
version = "0.4.3"
1106
source = "registry+https://github.com/rust-lang/crates.io-index"
1107
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
1108
dependencies = [
1109 1110
 "libc",
 "winapi 0.3.6",
1111 1112
]

1113 1114 1115 1116
[[package]]
name = "fs_extra"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1117
checksum = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
1118

1119 1120 1121 1122
[[package]]
name = "fst"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1123
checksum = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f"
1124
dependencies = [
1125
 "byteorder",
1126 1127
]

1128 1129 1130 1131
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1132
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1133

O
Oliver Schneider 已提交
1134 1135
[[package]]
name = "fuchsia-zircon"
1136
version = "0.3.3"
O
Oliver Schneider 已提交
1137
source = "registry+https://github.com/rust-lang/crates.io-index"
1138
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
O
Oliver Schneider 已提交
1139
dependencies = [
1140 1141
 "bitflags",
 "fuchsia-zircon-sys",
O
Oliver Schneider 已提交
1142 1143 1144 1145
]

[[package]]
name = "fuchsia-zircon-sys"
1146
version = "0.3.3"
O
Oliver Schneider 已提交
1147
source = "registry+https://github.com/rust-lang/crates.io-index"
1148
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
O
Oliver Schneider 已提交
1149

S
steveklabnik 已提交
1150 1151
[[package]]
name = "futf"
A
Alex Crichton 已提交
1152
version = "0.1.4"
S
steveklabnik 已提交
1153
source = "registry+https://github.com/rust-lang/crates.io-index"
1154
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
S
steveklabnik 已提交
1155
dependencies = [
1156 1157
 "mac",
 "new_debug_unreachable",
S
steveklabnik 已提交
1158 1159
]

1160 1161
[[package]]
name = "futures"
1162
version = "0.1.28"
1163
source = "registry+https://github.com/rust-lang/crates.io-index"
1164
checksum = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869"
1165

1166 1167 1168 1169
[[package]]
name = "futures-cpupool"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
1170
checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
1171
dependencies = [
1172 1173
 "futures",
 "num_cpus",
1174 1175
]

E
Eric Huss 已提交
1176 1177 1178 1179
[[package]]
name = "fwdansi"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1180
checksum = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
E
Eric Huss 已提交
1181
dependencies = [
1182 1183
 "memchr",
 "termcolor",
E
Eric Huss 已提交
1184 1185
]

1186 1187 1188 1189
[[package]]
name = "generic-array"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1190
checksum = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d"
1191
dependencies = [
1192
 "typenum",
1193 1194
]

1195 1196
[[package]]
name = "getopts"
1197
version = "0.2.21"
1198
source = "registry+https://github.com/rust-lang/crates.io-index"
1199
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
V
varkor 已提交
1200
dependencies = [
1201 1202
 "rustc-std-workspace-core",
 "rustc-std-workspace-std",
1203
 "unicode-width",
V
varkor 已提交
1204
]
1205

G
gnzlbg 已提交
1206 1207
[[package]]
name = "getrandom"
M
Mateusz Mikuła 已提交
1208
version = "0.1.12"
G
gnzlbg 已提交
1209
source = "registry+https://github.com/rust-lang/crates.io-index"
M
Mateusz Mikuła 已提交
1210
checksum = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571"
G
gnzlbg 已提交
1211
dependencies = [
1212 1213
 "cfg-if",
 "libc",
M
Mateusz Mikuła 已提交
1214
 "wasi",
G
gnzlbg 已提交
1215 1216
]

1217 1218
[[package]]
name = "git2"
E
Eric Huss 已提交
1219
version = "0.10.0"
1220
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1221
checksum = "327d698f86a7ebdfeb86a4238ccdb004828939d3a3555b6ead679541d14e36c0"
1222
dependencies = [
1223 1224 1225 1226 1227 1228
 "bitflags",
 "libc",
 "libgit2-sys",
 "log",
 "openssl-probe",
 "openssl-sys",
F
flip1995 已提交
1229
 "url 2.1.0",
1230 1231 1232 1233
]

[[package]]
name = "git2-curl"
E
Eric Huss 已提交
1234
version = "0.11.0"
1235
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1236
checksum = "cd6527e480187ce19aaf4fa6acfb7657b25628ce31cb8ffabdfca3bf731524c5"
1237
dependencies = [
1238 1239 1240
 "curl",
 "git2",
 "log",
F
flip1995 已提交
1241
 "url 2.1.0",
1242 1243 1244 1245
]

[[package]]
name = "glob"
E
Eric Huss 已提交
1246
version = "0.3.0"
1247
source = "registry+https://github.com/rust-lang/crates.io-index"
1248
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
1249

1250 1251
[[package]]
name = "globset"
E
Eric Huss 已提交
1252
version = "0.4.3"
1253
source = "registry+https://github.com/rust-lang/crates.io-index"
1254
checksum = "ef4feaabe24a0a658fd9cf4a9acf6ed284f045c77df0f49020ba3245cfb7b454"
1255
dependencies = [
1256 1257 1258 1259 1260
 "aho-corasick",
 "bstr",
 "fnv",
 "log",
 "regex",
1261 1262
]

1263 1264 1265 1266
[[package]]
name = "graphviz"
version = "0.0.0"

1267 1268 1269 1270
[[package]]
name = "h2"
version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
1271
checksum = "a539b63339fbbb00e081e84b6e11bd1d9634a82d91da2984a18ac74a8823f392"
1272
dependencies = [
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
 "byteorder",
 "bytes",
 "fnv",
 "futures",
 "http",
 "indexmap",
 "log",
 "slab",
 "string",
 "tokio-io",
1283 1284
]

1285 1286
[[package]]
name = "handlebars"
E
Eric Huss 已提交
1287
version = "2.0.1"
1288
source = "registry+https://github.com/rust-lang/crates.io-index"
1289
checksum = "df044dd42cdb7e32f28557b661406fc0f2494be75199779998810dbc35030e0d"
1290
dependencies = [
1291
 "hashbrown 0.5.0",
1292 1293 1294 1295 1296 1297 1298 1299
 "lazy_static 1.3.0",
 "log",
 "pest",
 "pest_derive",
 "quick-error",
 "regex",
 "serde",
 "serde_json",
1300 1301
]

1302 1303
[[package]]
name = "hashbrown"
S
Simon Sapin 已提交
1304
version = "0.5.0"
1305
source = "registry+https://github.com/rust-lang/crates.io-index"
1306
checksum = "e1de41fb8dba9714efd92241565cdff73f78508c95697dd56787d3cba27e2353"
1307
dependencies = [
1308 1309 1310 1311 1312
 "serde",
]

[[package]]
name = "hashbrown"
A
Alex Crichton 已提交
1313
version = "0.6.2"
1314
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1315
checksum = "3cd9867f119b19fecb08cd5c326ad4488d7a1da4bf75b4d95d71db742525aaab"
1316 1317
dependencies = [
 "autocfg",
1318 1319 1320
 "compiler_builtins",
 "rustc-std-workspace-alloc",
 "rustc-std-workspace-core",
E
Eric Huss 已提交
1321 1322
]

1323 1324 1325 1326
[[package]]
name = "heck"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1327
checksum = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
1328
dependencies = [
1329
 "unicode-segmentation",
1330 1331
]

1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
[[package]]
name = "hermit-abi"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f22b8f315b98f415780ddbe9163c7dbbc5a07225b6d102ace1d8aeef85775140"
dependencies = [
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
]

1343 1344
[[package]]
name = "hex"
A
Alex Crichton 已提交
1345
version = "0.3.2"
1346
source = "registry+https://github.com/rust-lang/crates.io-index"
1347
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
1348

A
Aaron Hill 已提交
1349 1350 1351 1352 1353 1354
[[package]]
name = "hex"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e"

F
flip1995 已提交
1355 1356
[[package]]
name = "home"
L
Lzu Tao 已提交
1357
version = "0.5.1"
F
flip1995 已提交
1358
source = "registry+https://github.com/rust-lang/crates.io-index"
L
Lzu Tao 已提交
1359
checksum = "a3753954f7bd71f0e671afb8b5a992d1724cf43b7f95a563cd4a0bde94659ca8"
F
flip1995 已提交
1360 1361 1362 1363 1364
dependencies = [
 "scopeguard 1.0.0",
 "winapi 0.3.6",
]

E
Eric Huss 已提交
1365 1366
[[package]]
name = "html5ever"
1367
version = "0.24.1"
E
Eric Huss 已提交
1368
source = "registry+https://github.com/rust-lang/crates.io-index"
1369
checksum = "025483b0a1e4577bb28578318c886ee5f817dda6eb62473269349044406644cb"
E
Eric Huss 已提交
1370
dependencies = [
1371 1372 1373
 "log",
 "mac",
 "markup5ever",
1374 1375 1376
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
E
Eric Huss 已提交
1377 1378
]

E
Eric Huss 已提交
1379 1380 1381 1382
[[package]]
name = "http"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
1383
checksum = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a"
E
Eric Huss 已提交
1384
dependencies = [
1385 1386 1387
 "bytes",
 "fnv",
 "itoa",
E
Eric Huss 已提交
1388 1389
]

1390 1391 1392 1393
[[package]]
name = "http-body"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1394
checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
1395
dependencies = [
1396 1397 1398 1399
 "bytes",
 "futures",
 "http",
 "tokio-buf",
1400 1401 1402 1403 1404 1405
]

[[package]]
name = "httparse"
version = "1.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
1406
checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
1407

A
Alex Crichton 已提交
1408 1409
[[package]]
name = "humantime"
A
Alex Crichton 已提交
1410
version = "1.3.0"
A
Alex Crichton 已提交
1411
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1412
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
A
Alex Crichton 已提交
1413
dependencies = [
1414
 "quick-error",
A
Alex Crichton 已提交
1415 1416
]

1417 1418 1419 1420
[[package]]
name = "hyper"
version = "0.12.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
checksum = "6481fff8269772d4463253ca83c788104a7305cb3fb9136bc651a6211e46e03f"
dependencies = [
 "bytes",
 "futures",
 "futures-cpupool",
 "h2",
 "http",
 "http-body",
 "httparse",
 "iovec",
 "itoa",
 "log",
 "net2",
 "rustc_version",
 "time",
 "tokio",
 "tokio-buf",
 "tokio-executor",
 "tokio-io",
 "tokio-reactor",
 "tokio-tcp",
 "tokio-threadpool",
 "tokio-timer",
 "want",
1445 1446 1447 1448 1449 1450
]

[[package]]
name = "hyper-tls"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1451
checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
1452
dependencies = [
1453 1454 1455 1456 1457
 "bytes",
 "futures",
 "hyper",
 "native-tls",
 "tokio-io",
1458 1459
]

E
Eric Huss 已提交
1460 1461 1462 1463
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1464
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
E
Eric Huss 已提交
1465

1466 1467
[[package]]
name = "idna"
A
Alex Crichton 已提交
1468
version = "0.1.5"
1469
source = "registry+https://github.com/rust-lang/crates.io-index"
1470
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
1471
dependencies = [
1472 1473 1474
 "matches",
 "unicode-bidi",
 "unicode-normalization",
A
Alex Crichton 已提交
1475 1476
]

E
Eric Huss 已提交
1477 1478 1479 1480
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1481
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
E
Eric Huss 已提交
1482
dependencies = [
1483 1484 1485
 "matches",
 "unicode-bidi",
 "unicode-normalization",
E
Eric Huss 已提交
1486 1487
]

O
Oliver Schneider 已提交
1488 1489
[[package]]
name = "if_chain"
O
Oliver Scherer 已提交
1490
version = "1.0.0"
O
Oliver Schneider 已提交
1491
source = "registry+https://github.com/rust-lang/crates.io-index"
1492
checksum = "c3360c7b59e5ffa2653671fb74b4741a5d343c03f331c0a4aeda42b5c2b0ec7d"
O
Oliver Schneider 已提交
1493

1494 1495
[[package]]
name = "ignore"
E
Eric Huss 已提交
1496
version = "0.4.7"
1497
source = "registry+https://github.com/rust-lang/crates.io-index"
1498
checksum = "8dc57fa12805f367736a38541ac1a9fc6a52812a0ca959b1d4d4b640a89eb002"
1499
dependencies = [
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
 "crossbeam-channel",
 "globset",
 "lazy_static 1.3.0",
 "log",
 "memchr",
 "regex",
 "same-file",
 "thread_local",
 "walkdir",
 "winapi-util",
1510 1511
]

E
Eric Huss 已提交
1512 1513
[[package]]
name = "im-rc"
E
Eric Huss 已提交
1514
version = "13.0.0"
E
Eric Huss 已提交
1515
source = "registry+https://github.com/rust-lang/crates.io-index"
1516
checksum = "0a0197597d095c0d11107975d3175173f810ee572c2501ff4de64f4f3f119806"
E
Eric Huss 已提交
1517
dependencies = [
1518 1519 1520
 "rustc_version",
 "sized-chunks",
 "typenum",
E
Eric Huss 已提交
1521 1522
]

1523 1524 1525 1526
[[package]]
name = "indexmap"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1527
checksum = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
1528

1529 1530 1531 1532
[[package]]
name = "installer"
version = "0.0.0"
dependencies = [
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
 "clap",
 "failure",
 "flate2",
 "lazy_static 1.3.0",
 "num_cpus",
 "rayon",
 "remove_dir_all",
 "tar",
 "walkdir",
 "winapi 0.3.6",
 "xz2",
1544 1545
]

1546 1547 1548 1549
[[package]]
name = "iovec"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1550
checksum = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
1551
dependencies = [
1552 1553
 "libc",
 "winapi 0.2.8",
1554 1555
]

S
steveklabnik 已提交
1556 1557 1558 1559
[[package]]
name = "is-match"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1560
checksum = "7e5b386aef33a1c677be65237cb9d32c3f3ef56bd035949710c4bb13083eb053"
S
steveklabnik 已提交
1561 1562 1563

[[package]]
name = "itertools"
A
Alex Crichton 已提交
1564
version = "0.7.8"
S
steveklabnik 已提交
1565
source = "registry+https://github.com/rust-lang/crates.io-index"
1566
checksum = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450"
S
steveklabnik 已提交
1567
dependencies = [
1568
 "either",
S
steveklabnik 已提交
1569 1570
]

1571 1572 1573 1574
[[package]]
name = "itertools"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1575
checksum = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
1576
dependencies = [
1577
 "either",
1578 1579
]

1580
[[package]]
A
Alex Crichton 已提交
1581
name = "itoa"
E
Eric Huss 已提交
1582
version = "0.4.4"
1583
source = "registry+https://github.com/rust-lang/crates.io-index"
1584
checksum = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
1585

1586 1587
[[package]]
name = "jemalloc-sys"
G
gnzlbg 已提交
1588
version = "0.3.0"
1589
source = "registry+https://github.com/rust-lang/crates.io-index"
1590
checksum = "7bef0d4ce37578dfd80b466e3d8324bd9de788e249f1accebb0c472ea4b52bdc"
1591
dependencies = [
1592 1593 1594
 "cc",
 "fs_extra",
 "libc",
1595 1596
]

S
Steve Klabnik 已提交
1597
[[package]]
A
Alex Crichton 已提交
1598
name = "jobserver"
G
gnzlbg 已提交
1599
version = "0.1.16"
S
Steve Klabnik 已提交
1600
source = "registry+https://github.com/rust-lang/crates.io-index"
1601
checksum = "f74e73053eaf95399bf926e48fc7a2a3ce50bd0eaaa2357d391e95b2dcdd4f10"
A
Alex Crichton 已提交
1602
dependencies = [
1603 1604 1605
 "libc",
 "log",
 "rand 0.7.0",
A
Alex Crichton 已提交
1606
]
S
Steve Klabnik 已提交
1607

1608 1609 1610 1611
[[package]]
name = "json"
version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
1612
checksum = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be"
1613

1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
[[package]]
name = "jsonrpc-client-transports"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39577db48b004cffb4c5b8e5c9b993c177c52599ecbee88711e815acf65144db"
dependencies = [
 "failure",
 "futures",
 "jsonrpc-core",
 "jsonrpc-pubsub",
 "jsonrpc-server-utils",
 "log",
 "parity-tokio-ipc",
 "serde",
 "serde_json",
 "tokio",
 "url 1.7.2",
]

1633 1634
[[package]]
name = "jsonrpc-core"
1635
version = "13.2.0"
1636
source = "registry+https://github.com/rust-lang/crates.io-index"
1637
checksum = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d"
1638
dependencies = [
1639 1640 1641 1642 1643
 "futures",
 "log",
 "serde",
 "serde_derive",
 "serde_json",
1644 1645
]

1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
[[package]]
name = "jsonrpc-core-client"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f047c10738edee7c3c6acf5241a0ce33df32ef9230c1a7fb03e4a77ee72c992f"
dependencies = [
 "jsonrpc-client-transports",
]

[[package]]
name = "jsonrpc-derive"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29f9149f785deaae92a4c834a9a1a83a4313b8cfedccf15362cd4cf039a64501"
dependencies = [
 "proc-macro-crate",
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
]

[[package]]
name = "jsonrpc-ipc-server"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "256c5e4292c17b4c2ecdf542299dc8e9d6b3939c075c54825570ad9317fe5751"
dependencies = [
 "jsonrpc-core",
 "jsonrpc-server-utils",
 "log",
 "parity-tokio-ipc",
 "parking_lot 0.9.0",
 "tokio-service",
]

[[package]]
name = "jsonrpc-pubsub"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2c08b444cc0ed70263798834343d0ac875e664257df8079160f23ac1ea79446"
dependencies = [
 "jsonrpc-core",
 "log",
 "parking_lot 0.9.0",
 "serde",
]

[[package]]
name = "jsonrpc-server-utils"
version = "13.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44561bfdd31401bad790527f1e951dde144f2341ddc3e1b859d32945e1a34eff"
dependencies = [
 "bytes",
 "globset",
 "jsonrpc-core",
 "lazy_static 1.3.0",
 "log",
 "num_cpus",
 "tokio",
 "tokio-codec",
L
Lzu Tao 已提交
1707
 "unicase 2.5.1",
1708 1709
]

1710 1711 1712 1713
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1714
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1715
dependencies = [
1716 1717
 "winapi 0.2.8",
 "winapi-build",
1718 1719 1720 1721
]

[[package]]
name = "lazy_static"
O
Oliver Schneider 已提交
1722 1723
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
1724
checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
O
Oliver Schneider 已提交
1725

A
Alex Crichton 已提交
1726 1727
[[package]]
name = "lazy_static"
1728
version = "1.3.0"
A
Alex Crichton 已提交
1729
source = "registry+https://github.com/rust-lang/crates.io-index"
1730
checksum = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
A
Alex Crichton 已提交
1731

A
Alex Crichton 已提交
1732 1733
[[package]]
name = "lazycell"
1734
version = "1.2.1"
A
Alex Crichton 已提交
1735
source = "registry+https://github.com/rust-lang/crates.io-index"
1736
checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
A
Alex Crichton 已提交
1737

1738 1739
[[package]]
name = "libc"
M
Mateusz Mikuła 已提交
1740
version = "0.2.64"
1741
source = "registry+https://github.com/rust-lang/crates.io-index"
M
Mateusz Mikuła 已提交
1742
checksum = "74dfca3d9957906e8d1e6a0b641dc9a59848e793f1da2165889fd4f62d10d79c"
1743
dependencies = [
1744
 "rustc-std-workspace-core",
1745
]
1746

1747 1748 1749 1750
[[package]]
name = "libflate"
version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
1751
checksum = "90c6f86f4b0caa347206f916f8b687b51d77c6ef8ff18d52dd007491fd580529"
1752
dependencies = [
1753 1754 1755 1756 1757
 "adler32",
 "byteorder",
 "crc32fast",
 "rle-decode-fast",
 "take_mut",
1758 1759
]

1760 1761
[[package]]
name = "libgit2-sys"
E
Eric Huss 已提交
1762
version = "0.9.0"
1763
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1764
checksum = "8c2078aec6f4b16d1b89f6a72e4f6eb1e75ffa85312023291e89c6d3087bc8fb"
1765
dependencies = [
1766 1767 1768 1769 1770 1771
 "cc",
 "libc",
 "libssh2-sys",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
1772 1773
]

A
Alex Crichton 已提交
1774 1775
[[package]]
name = "libnghttp2-sys"
1776
version = "0.1.1"
A
Alex Crichton 已提交
1777
source = "registry+https://github.com/rust-lang/crates.io-index"
1778
checksum = "d75d7966bda4730b722d1eab8e668df445368a24394bae9fc1e8dc0ab3dbe4f4"
A
Alex Crichton 已提交
1779
dependencies = [
1780 1781
 "cc",
 "libc",
A
Alex Crichton 已提交
1782 1783
]

1784 1785
[[package]]
name = "libssh2-sys"
1786
version = "0.2.11"
1787
source = "registry+https://github.com/rust-lang/crates.io-index"
1788
checksum = "126a1f4078368b163bfdee65fbab072af08a1b374a5551b21e87ade27b1fbf9d"
1789
dependencies = [
1790 1791 1792 1793 1794 1795
 "cc",
 "libc",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
 "vcpkg",
1796 1797 1798 1799
]

[[package]]
name = "libz-sys"
1800
version = "1.0.25"
1801
source = "registry+https://github.com/rust-lang/crates.io-index"
1802
checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
1803
dependencies = [
1804 1805 1806 1807
 "cc",
 "libc",
 "pkg-config",
 "vcpkg",
1808 1809
]

1810 1811 1812 1813
[[package]]
name = "linkchecker"
version = "0.1.0"

M
Mark Rousskov 已提交
1814 1815 1816 1817
[[package]]
name = "lock_api"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
1818
checksum = "949826a5ccf18c1b3a7c3d57692778d21768b79e46eb9dd07bfc4c2160036c54"
M
Mark Rousskov 已提交
1819
dependencies = [
1820 1821
 "owning_ref",
 "scopeguard 0.3.3",
M
Mark Rousskov 已提交
1822 1823
]

1824 1825 1826 1827 1828 1829 1830 1831 1832
[[package]]
name = "lock_api"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc"
dependencies = [
 "scopeguard 1.0.0",
]

1833 1834
[[package]]
name = "log"
E
Eric Huss 已提交
1835
version = "0.4.8"
1836
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1837
checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
1838
dependencies = [
1839
 "cfg-if",
1840
]
1841

1842 1843
[[package]]
name = "log_settings"
A
Alex Crichton 已提交
1844
version = "0.1.2"
1845
source = "registry+https://github.com/rust-lang/crates.io-index"
1846
checksum = "19af41f0565d7c19b2058153ad0b42d4d5ce89ec4dbf06ed6741114a8b63e7cd"
1847
dependencies = [
1848
 "lazy_static 1.3.0",
1849 1850
]

1851 1852
[[package]]
name = "lsp-codec"
E
Eric Huss 已提交
1853
version = "0.1.2"
1854
source = "registry+https://github.com/rust-lang/crates.io-index"
1855
checksum = "169d737ad89cf8ddd82d1804d9122f54568c49377665157277cc90d747b1d31a"
1856
dependencies = [
1857 1858 1859
 "bytes",
 "serde_json",
 "tokio-codec",
1860 1861 1862 1863
]

[[package]]
name = "lsp-types"
1864
version = "0.60.0"
1865
source = "registry+https://github.com/rust-lang/crates.io-index"
1866
checksum = "fe3edefcd66dde1f7f1df706f46520a3c93adc5ca4bc5747da6621195e894efd"
1867
dependencies = [
1868 1869 1870
 "bitflags",
 "serde",
 "serde_json",
1871 1872
 "serde_repr",
 "url 2.1.0",
1873 1874
]

1875 1876
[[package]]
name = "lzma-sys"
1877
version = "0.1.14"
1878
source = "registry+https://github.com/rust-lang/crates.io-index"
1879
checksum = "16b5c59c57cc4d39e7999f50431aa312ea78af7c93b23fbb0c3567bd672e7f35"
1880
dependencies = [
1881 1882 1883
 "cc",
 "libc",
 "pkg-config",
1884 1885
]

S
steveklabnik 已提交
1886 1887 1888 1889
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1890
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
S
steveklabnik 已提交
1891

G
Guillaume Gomez 已提交
1892 1893 1894 1895
[[package]]
name = "macro-utils"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1896
checksum = "f2c4deaccc2ead6a28c16c0ba82f07d52b6475397415ce40876e559b0b0ea510"
G
Guillaume Gomez 已提交
1897

S
steveklabnik 已提交
1898 1899 1900 1901
[[package]]
name = "maplit"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1902
checksum = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43"
S
steveklabnik 已提交
1903

E
Eric Huss 已提交
1904 1905
[[package]]
name = "markup5ever"
1906
version = "0.9.0"
E
Eric Huss 已提交
1907
source = "registry+https://github.com/rust-lang/crates.io-index"
1908
checksum = "65381d9d47506b8592b97c4efd936afcf673b09b059f2bef39c7211ee78b9d03"
E
Eric Huss 已提交
1909
dependencies = [
1910 1911 1912 1913 1914 1915 1916 1917 1918
 "log",
 "phf",
 "phf_codegen",
 "serde",
 "serde_derive",
 "serde_json",
 "string_cache",
 "string_cache_codegen",
 "tendril",
E
Eric Huss 已提交
1919 1920
]

1921 1922
[[package]]
name = "matches"
A
Alex Crichton 已提交
1923
version = "0.1.8"
1924
source = "registry+https://github.com/rust-lang/crates.io-index"
1925
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
1926

1927 1928
[[package]]
name = "mdbook"
1929
version = "0.3.3"
1930
source = "registry+https://github.com/rust-lang/crates.io-index"
1931
checksum = "9a070268274c566082efb6b2ace7743e43ba91a70d5c6982981e96d3c05ac81c"
1932 1933 1934 1935 1936
dependencies = [
 "ammonia",
 "chrono",
 "clap",
 "elasticlunr-rs",
A
Alex Crichton 已提交
1937
 "env_logger 0.6.2",
1938 1939 1940 1941 1942 1943 1944
 "error-chain",
 "handlebars",
 "itertools 0.8.0",
 "lazy_static 1.3.0",
 "log",
 "memchr",
 "open",
L
Lzu Tao 已提交
1945
 "pulldown-cmark 0.5.3",
1946 1947 1948 1949 1950 1951
 "regex",
 "serde",
 "serde_derive",
 "serde_json",
 "shlex",
 "tempfile",
E
Eric Huss 已提交
1952
 "toml",
1953
 "toml-query",
1954 1955
]

1956 1957 1958 1959
[[package]]
name = "mdbook-linkcheck"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1960
checksum = "77d1f0ba4d1e6b86fa18e8853d026d7d76a97eb7eb5eb052ed80901e43b7fc10"
1961
dependencies = [
A
Alex Crichton 已提交
1962
 "env_logger 0.6.2",
1963 1964 1965 1966
 "failure",
 "log",
 "mdbook",
 "memchr",
L
Lzu Tao 已提交
1967
 "pulldown-cmark 0.5.3",
1968 1969 1970 1971 1972 1973 1974
 "rayon",
 "regex",
 "reqwest",
 "semver",
 "serde",
 "serde_derive",
 "serde_json",
1975
 "structopt 0.2.18",
1976
 "url 1.7.2",
1977 1978
]

W
Wesley Wiser 已提交
1979 1980
[[package]]
name = "measureme"
1981
version = "0.4.0"
W
Wesley Wiser 已提交
1982
source = "registry+https://github.com/rust-lang/crates.io-index"
1983
checksum = "cd21b0e6e1af976b269ce062038fe5e1b9ca2f817ab7a3af09ec4210aebf0d30"
W
Wesley Wiser 已提交
1984
dependencies = [
1985 1986 1987
 "byteorder",
 "memmap",
 "rustc-hash",
W
Wesley Wiser 已提交
1988 1989
]

O
Oliver Schneider 已提交
1990 1991
[[package]]
name = "memchr"
1992
version = "2.2.0"
O
Oliver Schneider 已提交
1993
source = "registry+https://github.com/rust-lang/crates.io-index"
1994
checksum = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
1995

1996 1997 1998 1999
[[package]]
name = "memmap"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2000
checksum = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
2001
dependencies = [
2002 2003
 "libc",
 "winapi 0.3.6",
2004 2005
]

N
Nick Cameron 已提交
2006 2007 2008 2009
[[package]]
name = "memoffset"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2010
checksum = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
N
Nick Cameron 已提交
2011

R
Ralf Jung 已提交
2012 2013 2014 2015
[[package]]
name = "memoffset"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2016
checksum = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f"
R
Ralf Jung 已提交
2017
dependencies = [
2018
 "rustc_version",
R
Ralf Jung 已提交
2019 2020
]

2021 2022 2023 2024
[[package]]
name = "mime"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025
checksum = "3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425"
2026
dependencies = [
L
Lzu Tao 已提交
2027
 "unicase 2.5.1",
2028 2029 2030 2031 2032 2033
]

[[package]]
name = "mime_guess"
version = "2.0.0-alpha.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2034
checksum = "30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed"
2035
dependencies = [
2036 2037 2038 2039
 "mime",
 "phf",
 "phf_codegen",
 "unicase 1.4.2",
2040 2041
]

G
Guillaume Gomez 已提交
2042 2043
[[package]]
name = "minifier"
G
Guillaume Gomez 已提交
2044
version = "0.0.33"
G
Guillaume Gomez 已提交
2045
source = "registry+https://github.com/rust-lang/crates.io-index"
2046
checksum = "70bf0db2475f5e627787da77ca52fe33c294063f49f4134b8bc662eedb5e7332"
G
Guillaume Gomez 已提交
2047
dependencies = [
2048
 "macro-utils",
G
Guillaume Gomez 已提交
2049 2050
]

2051 2052
[[package]]
name = "miniz-sys"
2053 2054
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2055
checksum = "0300eafb20369952951699b68243ab4334f4b10a88f411c221d444b36c40e649"
2056
dependencies = [
2057 2058
 "cc",
 "libc",
2059 2060 2061 2062 2063 2064
]

[[package]]
name = "miniz_oxide"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2065
checksum = "5ad30a47319c16cde58d0314f5d98202a80c9083b5f61178457403dfb14e509c"
2066
dependencies = [
2067
 "adler32",
2068 2069 2070 2071 2072
]

[[package]]
name = "miniz_oxide_c_api"
version = "0.2.0"
2073
source = "registry+https://github.com/rust-lang/crates.io-index"
2074
checksum = "28edaef377517fd9fe3e085c37d892ce7acd1fbeab9239c5a36eec352d8a8b7e"
2075
dependencies = [
2076 2077 2078 2079
 "cc",
 "crc",
 "libc",
 "miniz_oxide",
2080 2081
]

2082 2083 2084 2085
[[package]]
name = "mio"
version = "0.6.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2086
checksum = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432"
2087
dependencies = [
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
 "fuchsia-zircon",
 "fuchsia-zircon-sys",
 "iovec",
 "kernel32-sys",
 "lazycell",
 "libc",
 "log",
 "miow 0.2.1",
 "net2",
 "slab",
 "winapi 0.2.8",
2099 2100 2101 2102 2103 2104
]

[[package]]
name = "mio-named-pipes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2105
checksum = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3"
2106
dependencies = [
2107 2108 2109 2110
 "log",
 "mio",
 "miow 0.3.3",
 "winapi 0.3.6",
2111 2112 2113 2114 2115 2116
]

[[package]]
name = "mio-uds"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2117
checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
2118
dependencies = [
2119 2120 2121
 "iovec",
 "libc",
 "mio",
2122 2123 2124 2125 2126 2127
]

[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2128
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
2129
dependencies = [
2130 2131 2132 2133
 "kernel32-sys",
 "net2",
 "winapi 0.2.8",
 "ws2_32-sys",
2134 2135
]

A
Alex Crichton 已提交
2136 2137
[[package]]
name = "miow"
A
Alex Crichton 已提交
2138
version = "0.3.3"
A
Alex Crichton 已提交
2139
source = "registry+https://github.com/rust-lang/crates.io-index"
2140
checksum = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
A
Alex Crichton 已提交
2141
dependencies = [
2142 2143
 "socket2",
 "winapi 0.3.6",
A
Alex Crichton 已提交
2144 2145
]

2146 2147 2148 2149
[[package]]
name = "miri"
version = "0.1.0"
dependencies = [
2150
 "byteorder",
R
Ralf Jung 已提交
2151
 "cargo_metadata 0.9.0",
2152 2153 2154
 "colored",
 "compiletest_rs",
 "directories",
R
Ralf Jung 已提交
2155
 "env_logger 0.7.1",
R
Ralf Jung 已提交
2156
 "getrandom",
R
Ralf Jung 已提交
2157
 "hex 0.4.0",
2158 2159
 "log",
 "num-traits",
R
Ralf Jung 已提交
2160
 "rand 0.7.0",
2161 2162 2163 2164
 "rustc-workspace-hack",
 "rustc_version",
 "shell-escape",
 "vergen",
2165 2166
]

2167 2168 2169 2170
[[package]]
name = "native-tls"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2171
checksum = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
2172
dependencies = [
2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
 "lazy_static 1.3.0",
 "libc",
 "log",
 "openssl",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "security-framework",
 "security-framework-sys",
 "tempfile",
2183 2184
]

2185 2186 2187 2188
[[package]]
name = "net2"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2189
checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
2190
dependencies = [
2191 2192 2193
 "cfg-if",
 "libc",
 "winapi 0.3.6",
2194 2195
]

A
Alex Crichton 已提交
2196 2197
[[package]]
name = "new_debug_unreachable"
Y
Yuki Okushi 已提交
2198
version = "1.0.3"
A
Alex Crichton 已提交
2199
source = "registry+https://github.com/rust-lang/crates.io-index"
2200
checksum = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30"
A
Alex Crichton 已提交
2201

N
Nick Cameron 已提交
2202 2203 2204 2205
[[package]]
name = "nodrop"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2206
checksum = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
N
Nick Cameron 已提交
2207

2208
[[package]]
O
Oliver Schneider 已提交
2209 2210
name = "num-integer"
version = "0.1.39"
2211
source = "registry+https://github.com/rust-lang/crates.io-index"
2212
checksum = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea"
2213
dependencies = [
2214
 "num-traits",
2215 2216
]

S
Steve Klabnik 已提交
2217 2218
[[package]]
name = "num-traits"
2219
version = "0.2.6"
S
Steve Klabnik 已提交
2220
source = "registry+https://github.com/rust-lang/crates.io-index"
2221
checksum = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1"
S
Steve Klabnik 已提交
2222

2223 2224
[[package]]
name = "num_cpus"
2225
version = "1.8.0"
2226
source = "registry+https://github.com/rust-lang/crates.io-index"
2227
checksum = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
2228
dependencies = [
2229
 "libc",
2230 2231
]

2232 2233 2234 2235 2236 2237
[[package]]
name = "once_cell"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6a04cb71e910d0034815600180f62a95bf6e67942d7ab52a166a68c7d7e9cd0"

S
Steve Klabnik 已提交
2238 2239
[[package]]
name = "open"
A
Alex Crichton 已提交
2240
version = "1.2.1"
S
Steve Klabnik 已提交
2241
source = "registry+https://github.com/rust-lang/crates.io-index"
2242
checksum = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113"
S
Steve Klabnik 已提交
2243

A
Alex Crichton 已提交
2244 2245
[[package]]
name = "opener"
E
Eric Huss 已提交
2246
version = "0.4.0"
A
Alex Crichton 已提交
2247
source = "registry+https://github.com/rust-lang/crates.io-index"
2248
checksum = "998c59e83d9474c01127a96e023b7a04bb061dd286bf8bb939d31dc8d31a7448"
A
Alex Crichton 已提交
2249
dependencies = [
2250
 "winapi 0.3.6",
A
Alex Crichton 已提交
2251 2252
]

2253 2254
[[package]]
name = "openssl"
T
Tatsuyuki Ishi 已提交
2255
version = "0.10.16"
2256
source = "registry+https://github.com/rust-lang/crates.io-index"
2257
checksum = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9"
2258
dependencies = [
2259 2260 2261 2262 2263 2264
 "bitflags",
 "cfg-if",
 "foreign-types",
 "lazy_static 1.3.0",
 "libc",
 "openssl-sys",
2265 2266 2267 2268
]

[[package]]
name = "openssl-probe"
A
Alex Crichton 已提交
2269
version = "0.1.2"
2270
source = "registry+https://github.com/rust-lang/crates.io-index"
2271
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
2272

E
Eric Huss 已提交
2273 2274
[[package]]
name = "openssl-src"
A
Alex Crichton 已提交
2275
version = "111.6.0+1.1.1d"
E
Eric Huss 已提交
2276
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
2277
checksum = "b9c2da1de8a7a3f860919c01540b03a6db16de042405a8a07a5e9d0b4b825d9c"
E
Eric Huss 已提交
2278
dependencies = [
2279
 "cc",
E
Eric Huss 已提交
2280 2281
]

2282 2283
[[package]]
name = "openssl-sys"
E
Eric Huss 已提交
2284
version = "0.9.43"
2285
source = "registry+https://github.com/rust-lang/crates.io-index"
2286
checksum = "33c86834957dd5b915623e94f2f4ab2c70dd8f6b70679824155d5ae21dbd495d"
2287
dependencies = [
2288 2289 2290 2291 2292 2293
 "cc",
 "libc",
 "openssl-src",
 "pkg-config",
 "rustc_version",
 "vcpkg",
2294 2295
]

2296 2297 2298 2299
[[package]]
name = "ordermap"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2300
checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
2301

2302 2303 2304 2305
[[package]]
name = "ordslice"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2306
checksum = "dd20eec3dbe4376829cb7d80ae6ac45e0a766831dca50202ff2d40db46a8a024"
2307

2308 2309 2310 2311
[[package]]
name = "owning_ref"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2312
checksum = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
2313
dependencies = [
2314
 "stable_deref_trait",
2315 2316
]

N
Nick Cameron 已提交
2317 2318 2319 2320
[[package]]
name = "packed_simd"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2321
checksum = "25d36de864f7218ec5633572a800109bbe5a1cc8d9d95a967f3daf93ea7e6ddc"
N
Nick Cameron 已提交
2322
dependencies = [
2323
 "cfg-if",
N
Nick Cameron 已提交
2324 2325
]

2326 2327 2328 2329
[[package]]
name = "panic_abort"
version = "0.0.0"
dependencies = [
2330 2331 2332
 "compiler_builtins",
 "core",
 "libc",
2333 2334 2335 2336 2337 2338
]

[[package]]
name = "panic_unwind"
version = "0.0.0"
dependencies = [
2339 2340 2341 2342 2343 2344
 "alloc",
 "cfg-if",
 "compiler_builtins",
 "core",
 "libc",
 "unwind",
2345 2346
]

2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
[[package]]
name = "parity-tokio-ipc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8281bf4f1d6429573f89589bf68d89451c46750977a8264f8ea3edbabeba7947"
dependencies = [
 "bytes",
 "futures",
 "log",
 "mio-named-pipes",
 "miow 0.3.3",
 "rand 0.7.0",
 "tokio",
 "tokio-named-pipes",
 "tokio-uds",
 "winapi 0.3.6",
]

2365 2366 2367 2368
[[package]]
name = "parking_lot"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2369
checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
2370
dependencies = [
2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
 "lock_api 0.1.3",
 "parking_lot_core 0.4.0",
]

[[package]]
name = "parking_lot"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
dependencies = [
 "lock_api 0.3.1",
 "parking_lot_core 0.6.2",
 "rustc_version",
2384 2385 2386 2387 2388 2389
]

[[package]]
name = "parking_lot_core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2390
checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
2391
dependencies = [
2392 2393 2394
 "libc",
 "rand 0.6.1",
 "rustc_version",
R
Ralf Jung 已提交
2395
 "smallvec 0.6.10",
2396
 "winapi 0.3.6",
2397 2398
]

2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
[[package]]
name = "parking_lot_core"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
dependencies = [
 "cfg-if",
 "cloudabi",
 "libc",
 "redox_syscall",
 "rustc_version",
R
Ralf Jung 已提交
2410
 "smallvec 0.6.10",
2411 2412 2413
 "winapi 0.3.6",
]

2414 2415
[[package]]
name = "percent-encoding"
O
Oliver Schneider 已提交
2416
version = "1.0.1"
2417
source = "registry+https://github.com/rust-lang/crates.io-index"
2418
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
2419

E
Eric Huss 已提交
2420 2421 2422 2423
[[package]]
name = "percent-encoding"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2424
checksum = "ba4f28a6faf4ffea762ba8f4baef48c61a6db348647c73095034041fc79dd954"
E
Eric Huss 已提交
2425

2426 2427 2428 2429
[[package]]
name = "pest"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2430
checksum = "54f0c72a98d8ab3c99560bfd16df8059cc10e1f9a8e83e6e3b97718dd766e9c3"
2431
dependencies = [
2432
 "ucd-trie",
2433 2434 2435 2436 2437 2438
]

[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2439
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
2440
dependencies = [
2441 2442
 "pest",
 "pest_generator",
2443 2444 2445 2446 2447 2448
]

[[package]]
name = "pest_generator"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2449
checksum = "63120576c4efd69615b5537d3d052257328a4ca82876771d6944424ccfd9f646"
2450
dependencies = [
2451 2452
 "pest",
 "pest_meta",
2453 2454 2455
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
2456 2457 2458 2459 2460 2461
]

[[package]]
name = "pest_meta"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2462
checksum = "f5a3492a4ed208ffc247adcdcc7ba2a95be3104f58877d0d02f0df39bf3efb5e"
2463
dependencies = [
2464 2465 2466
 "maplit",
 "pest",
 "sha-1",
2467 2468
]

2469 2470
[[package]]
name = "petgraph"
2471
version = "0.4.13"
2472
source = "registry+https://github.com/rust-lang/crates.io-index"
2473
checksum = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
2474
dependencies = [
2475 2476
 "fixedbitset",
 "ordermap",
2477 2478
]

S
steveklabnik 已提交
2479 2480
[[package]]
name = "phf"
2481
version = "0.7.24"
S
steveklabnik 已提交
2482
source = "registry+https://github.com/rust-lang/crates.io-index"
2483
checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
S
steveklabnik 已提交
2484
dependencies = [
2485
 "phf_shared",
S
steveklabnik 已提交
2486 2487 2488 2489
]

[[package]]
name = "phf_codegen"
2490
version = "0.7.24"
S
steveklabnik 已提交
2491
source = "registry+https://github.com/rust-lang/crates.io-index"
2492
checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
S
steveklabnik 已提交
2493
dependencies = [
2494 2495
 "phf_generator",
 "phf_shared",
S
steveklabnik 已提交
2496 2497 2498 2499
]

[[package]]
name = "phf_generator"
2500
version = "0.7.24"
S
steveklabnik 已提交
2501
source = "registry+https://github.com/rust-lang/crates.io-index"
2502
checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
S
steveklabnik 已提交
2503
dependencies = [
2504 2505
 "phf_shared",
 "rand 0.6.1",
S
steveklabnik 已提交
2506 2507 2508 2509
]

[[package]]
name = "phf_shared"
2510
version = "0.7.24"
S
steveklabnik 已提交
2511
source = "registry+https://github.com/rust-lang/crates.io-index"
2512
checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
S
steveklabnik 已提交
2513
dependencies = [
2514 2515
 "siphasher",
 "unicase 1.4.2",
S
steveklabnik 已提交
2516 2517
]

2518 2519
[[package]]
name = "pkg-config"
2520
version = "0.3.14"
2521
source = "registry+https://github.com/rust-lang/crates.io-index"
2522
checksum = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c"
2523

2524 2525
[[package]]
name = "polonius-engine"
A
Albin Stjerna 已提交
2526
version = "0.10.0"
2527
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Albin Stjerna 已提交
2528
checksum = "50fa9dbfd0d3d60594da338cfe6f94028433eecae4b11b7e83fd99759227bbfe"
D
Douglas Campos 已提交
2529
dependencies = [
2530 2531 2532
 "datafrog",
 "log",
 "rustc-hash",
D
Douglas Campos 已提交
2533
]
2534

G
gnzlbg 已提交
2535 2536 2537 2538
[[package]]
name = "ppv-lite86"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2539
checksum = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b"
G
gnzlbg 已提交
2540

S
steveklabnik 已提交
2541 2542 2543 2544
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2545
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
S
steveklabnik 已提交
2546

M
Mark Simulacrum 已提交
2547 2548 2549 2550
[[package]]
name = "pretty_assertions"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2551
checksum = "3a029430f0d744bc3d15dd474d591bed2402b645d024583082b9f63bb936dac6"
M
Mark Simulacrum 已提交
2552
dependencies = [
2553 2554
 "ansi_term",
 "difference",
M
Mark Simulacrum 已提交
2555 2556
]

E
Eric Huss 已提交
2557 2558
[[package]]
name = "pretty_env_logger"
2559
version = "0.3.0"
E
Eric Huss 已提交
2560
source = "registry+https://github.com/rust-lang/crates.io-index"
2561
checksum = "df8b3f4e0475def7d9c2e5de8e5a1306949849761e107b360d03e98eafaffd61"
E
Eric Huss 已提交
2562
dependencies = [
2563
 "chrono",
A
Alex Crichton 已提交
2564
 "env_logger 0.6.2",
2565
 "log",
E
Eric Huss 已提交
2566 2567
]

2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
[[package]]
name = "proc-macro-crate"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e"
dependencies = [
 "toml",
]

[[package]]
name = "proc-macro-error"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
]

A
Alex Crichton 已提交
2588 2589
[[package]]
name = "proc-macro2"
E
Eric Huss 已提交
2590
version = "0.4.30"
A
Alex Crichton 已提交
2591
source = "registry+https://github.com/rust-lang/crates.io-index"
2592
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
A
Alex Crichton 已提交
2593
dependencies = [
2594
 "unicode-xid 0.1.0",
A
Alex Crichton 已提交
2595 2596
]

2597 2598 2599 2600 2601 2602 2603 2604 2605
[[package]]
name = "proc-macro2"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8"
dependencies = [
 "unicode-xid 0.2.0",
]

2606 2607 2608
[[package]]
name = "proc_macro"
version = "0.0.0"
2609 2610 2611
dependencies = [
 "std",
]
2612

2613 2614 2615 2616
[[package]]
name = "profiler_builtins"
version = "0.0.0"
dependencies = [
2617 2618 2619
 "cc",
 "compiler_builtins",
 "core",
2620 2621
]

2622 2623
[[package]]
name = "pulldown-cmark"
G
Guillaume Gomez 已提交
2624
version = "0.5.3"
2625
source = "registry+https://github.com/rust-lang/crates.io-index"
2626
checksum = "77043da1282374688ee212dc44b3f37ff929431de9c9adc3053bd3cee5630357"
2627
dependencies = [
2628 2629 2630
 "bitflags",
 "getopts",
 "memchr",
L
Lzu Tao 已提交
2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
 "unicase 2.5.1",
]

[[package]]
name = "pulldown-cmark"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85b0ad0d4c1702965ee6bb5b4ff5e71f83850b497d497e9444302987bf9e26a4"
dependencies = [
 "bitflags",
 "getopts",
 "memchr",
 "unicase 2.5.1",
2644 2645
]

2646 2647 2648 2649
[[package]]
name = "punycode"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2650
checksum = "6ddd112cca70a4d30883b2d21568a1d376ff8be4758649f64f973c6845128ad3"
2651

2652 2653
[[package]]
name = "quick-error"
A
Alex Crichton 已提交
2654
version = "1.2.2"
2655
source = "registry+https://github.com/rust-lang/crates.io-index"
2656
checksum = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
2657 2658

[[package]]
O
Oliver Schneider 已提交
2659 2660
name = "quine-mc_cluskey"
version = "0.2.4"
2661
source = "registry+https://github.com/rust-lang/crates.io-index"
2662
checksum = "07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45"
2663

A
Alex Crichton 已提交
2664 2665
[[package]]
name = "quote"
E
Eric Huss 已提交
2666
version = "0.6.12"
A
Alex Crichton 已提交
2667
source = "registry+https://github.com/rust-lang/crates.io-index"
2668
checksum = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
A
Alex Crichton 已提交
2669
dependencies = [
2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
 "proc-macro2 0.4.30",
]

[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
dependencies = [
 "proc-macro2 1.0.3",
A
Alex Crichton 已提交
2680 2681
]

2682 2683
[[package]]
name = "racer"
I
Igor Matuszewski 已提交
2684
version = "2.1.28"
2685
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2686
checksum = "acc70369054bad4ad0c16a3f45cd73e0695361a3af35c7b465e619ac2674f064"
2687
dependencies = [
2688 2689 2690
 "bitflags",
 "clap",
 "derive_more",
A
Alex Crichton 已提交
2691
 "env_logger 0.6.2",
2692 2693 2694 2695 2696
 "humantime",
 "lazy_static 1.3.0",
 "log",
 "rls-span",
 "rustc-ap-syntax",
2697
]
2698

2699 2700 2701 2702
[[package]]
name = "rand"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2703
checksum = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
2704
dependencies = [
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715
 "cloudabi",
 "fuchsia-zircon",
 "libc",
 "rand_chacha 0.1.0",
 "rand_core 0.3.0",
 "rand_hc 0.1.0",
 "rand_isaac",
 "rand_pcg",
 "rand_xorshift 0.1.0",
 "rustc_version",
 "winapi 0.3.6",
2716 2717
]

G
gnzlbg 已提交
2718 2719 2720 2721
[[package]]
name = "rand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2722
checksum = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c"
G
gnzlbg 已提交
2723
dependencies = [
2724 2725 2726 2727 2728
 "getrandom",
 "libc",
 "rand_chacha 0.2.1",
 "rand_core 0.5.0",
 "rand_hc 0.2.0",
G
gnzlbg 已提交
2729 2730
]

2731 2732 2733 2734
[[package]]
name = "rand_chacha"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2735
checksum = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
2736
dependencies = [
2737 2738
 "rand_core 0.3.0",
 "rustc_version",
2739 2740
]

G
gnzlbg 已提交
2741 2742 2743 2744
[[package]]
name = "rand_chacha"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2745
checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
G
gnzlbg 已提交
2746
dependencies = [
2747 2748
 "c2-chacha",
 "rand_core 0.5.0",
G
gnzlbg 已提交
2749 2750
]

2751 2752 2753 2754
[[package]]
name = "rand_core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2755
checksum = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
2756

2757 2758 2759 2760
[[package]]
name = "rand_core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2761
checksum = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
2762

G
gnzlbg 已提交
2763 2764 2765 2766
[[package]]
name = "rand_core"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2767
checksum = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca"
G
gnzlbg 已提交
2768
dependencies = [
2769
 "getrandom",
G
gnzlbg 已提交
2770 2771
]

2772 2773 2774 2775
[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2776
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2777
dependencies = [
2778
 "rand_core 0.3.0",
2779 2780
]

G
gnzlbg 已提交
2781 2782 2783 2784
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2785
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
G
gnzlbg 已提交
2786
dependencies = [
2787
 "rand_core 0.5.0",
G
gnzlbg 已提交
2788 2789
]

2790 2791 2792
[[package]]
name = "rand_isaac"
version = "0.1.1"
K
kennytm 已提交
2793
source = "registry+https://github.com/rust-lang/crates.io-index"
2794
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2795
dependencies = [
2796
 "rand_core 0.3.0",
2797 2798
]

2799 2800 2801 2802
[[package]]
name = "rand_os"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2803
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2804
dependencies = [
2805 2806 2807 2808 2809 2810
 "cloudabi",
 "fuchsia-cprng",
 "libc",
 "rand_core 0.4.0",
 "rdrand",
 "winapi 0.3.6",
2811 2812
]

2813 2814 2815 2816
[[package]]
name = "rand_pcg"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2817
checksum = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
2818
dependencies = [
2819 2820
 "rand_core 0.3.0",
 "rustc_version",
2821 2822 2823 2824 2825 2826
]

[[package]]
name = "rand_xorshift"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2827
checksum = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3"
2828
dependencies = [
2829
 "rand_core 0.3.0",
2830
]
K
kennytm 已提交
2831

R
Ralf Jung 已提交
2832 2833 2834 2835
[[package]]
name = "rand_xorshift"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2836
checksum = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8"
R
Ralf Jung 已提交
2837
dependencies = [
2838
 "rand_core 0.5.0",
R
Ralf Jung 已提交
2839 2840
]

N
Nick Cameron 已提交
2841 2842
[[package]]
name = "rayon"
J
Josh Stone 已提交
2843
version = "1.2.0"
N
Nick Cameron 已提交
2844
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Josh Stone 已提交
2845
checksum = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123"
N
Nick Cameron 已提交
2846
dependencies = [
J
Josh Stone 已提交
2847
 "crossbeam-deque 0.7.1",
2848 2849
 "either",
 "rayon-core",
O
Oliver Schneider 已提交
2850 2851 2852 2853
]

[[package]]
name = "rayon-core"
J
Josh Stone 已提交
2854
version = "1.6.0"
O
Oliver Schneider 已提交
2855
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Josh Stone 已提交
2856
checksum = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b"
O
Oliver Schneider 已提交
2857
dependencies = [
J
Josh Stone 已提交
2858
 "crossbeam-deque 0.7.1",
2859 2860 2861 2862
 "crossbeam-queue",
 "crossbeam-utils 0.6.5",
 "lazy_static 1.3.0",
 "num_cpus",
2863 2864 2865 2866 2867 2868
]

[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2869
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2870
dependencies = [
2871
 "rand_core 0.3.0",
2872 2873
]

N
Nick Cameron 已提交
2874 2875
[[package]]
name = "redox_syscall"
2876
version = "0.1.43"
O
Oliver Schneider 已提交
2877
source = "registry+https://github.com/rust-lang/crates.io-index"
2878
checksum = "679da7508e9a6390aeaf7fbd02a800fdc64b73fe2204dd2c8ae66d22d9d5ad5d"
O
Oliver Schneider 已提交
2879 2880 2881 2882

[[package]]
name = "redox_termios"
version = "0.1.1"
N
Nick Cameron 已提交
2883
source = "registry+https://github.com/rust-lang/crates.io-index"
2884
checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
O
Oliver Schneider 已提交
2885
dependencies = [
2886
 "redox_syscall",
O
Oliver Schneider 已提交
2887
]
N
Nick Cameron 已提交
2888

F
flip1995 已提交
2889 2890
[[package]]
name = "redox_users"
2891
version = "0.3.0"
F
flip1995 已提交
2892
source = "registry+https://github.com/rust-lang/crates.io-index"
2893
checksum = "3fe5204c3a17e97dde73f285d49be585df59ed84b50a872baf416e73b62c3828"
F
flip1995 已提交
2894
dependencies = [
2895 2896 2897 2898
 "argon2rs",
 "failure",
 "rand_os",
 "redox_syscall",
F
flip1995 已提交
2899 2900
]

2901 2902
[[package]]
name = "regex"
E
Eric Huss 已提交
2903
version = "1.1.6"
2904
source = "registry+https://github.com/rust-lang/crates.io-index"
2905
checksum = "8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58"
2906
dependencies = [
2907 2908 2909 2910 2911
 "aho-corasick",
 "memchr",
 "regex-syntax",
 "thread_local",
 "utf8-ranges",
2912 2913 2914 2915
]

[[package]]
name = "regex-syntax"
E
Eric Huss 已提交
2916
version = "0.6.6"
2917
source = "registry+https://github.com/rust-lang/crates.io-index"
2918
checksum = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96"
2919
dependencies = [
2920
 "ucd-util",
2921 2922
]

2923 2924 2925 2926 2927 2928 2929 2930
[[package]]
name = "remote-test-client"
version = "0.1.0"

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

A
Alex Crichton 已提交
2931 2932
[[package]]
name = "remove_dir_all"
E
Eric Huss 已提交
2933
version = "0.5.2"
A
Alex Crichton 已提交
2934
source = "registry+https://github.com/rust-lang/crates.io-index"
2935
checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
A
Alex Crichton 已提交
2936
dependencies = [
2937
 "winapi 0.3.6",
A
Alex Crichton 已提交
2938 2939
]

2940 2941 2942 2943
[[package]]
name = "reqwest"
version = "0.9.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967
checksum = "e542d9f077c126af32536b6aacc75bb7325400eab8cd0743543be5d91660780d"
dependencies = [
 "base64",
 "bytes",
 "encoding_rs",
 "futures",
 "http",
 "hyper",
 "hyper-tls",
 "libflate",
 "log",
 "mime",
 "mime_guess",
 "native-tls",
 "serde",
 "serde_json",
 "serde_urlencoded",
 "tokio",
 "tokio-executor",
 "tokio-io",
 "tokio-threadpool",
 "tokio-timer",
 "url 1.7.2",
 "uuid",
2968 2969 2970 2971 2972 2973
]

[[package]]
name = "rle-decode-fast"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2974
checksum = "cabe4fa914dec5870285fa7f71f602645da47c486e68486d2b4ceb4a343e90ac"
2975

2976 2977
[[package]]
name = "rls"
2978
version = "1.40.0"
2979
dependencies = [
2980
 "cargo",
M
Manish Goregaokar 已提交
2981
 "cargo_metadata 0.8.0",
2982 2983 2984
 "clippy_lints",
 "crossbeam-channel",
 "difference",
R
Ralf Jung 已提交
2985
 "env_logger 0.7.1",
2986 2987 2988
 "failure",
 "futures",
 "heck",
2989
 "home",
2990 2991 2992 2993 2994 2995 2996 2997 2998
 "itertools 0.8.0",
 "jsonrpc-core",
 "lazy_static 1.3.0",
 "log",
 "lsp-codec",
 "lsp-types",
 "num_cpus",
 "ordslice",
 "racer",
2999
 "rand 0.7.0",
3000 3001 3002 3003
 "rayon",
 "regex",
 "rls-analysis",
 "rls-data",
3004
 "rls-ipc",
3005 3006 3007 3008
 "rls-rustc",
 "rls-span",
 "rls-vfs",
 "rustc-workspace-hack",
I
Igor Matuszewski 已提交
3009
 "rustc_tools_util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
3010 3011 3012
 "rustfmt-nightly",
 "serde",
 "serde_derive",
3013
 "serde_ignored",
3014 3015 3016 3017 3018
 "serde_json",
 "tempfile",
 "tokio",
 "tokio-process",
 "tokio-timer",
E
Eric Huss 已提交
3019
 "toml",
3020
 "url 2.1.0",
3021
 "walkdir",
3022 3023 3024 3025
]

[[package]]
name = "rls-analysis"
I
Igor Matuszewski 已提交
3026
version = "0.18.0"
3027
source = "registry+https://github.com/rust-lang/crates.io-index"
3028
checksum = "4c0d208ad66717501222c74b42d9e823a7612592e85ed78b04074c8f58c0be0a"
3029
dependencies = [
3030 3031 3032 3033 3034 3035 3036 3037 3038
 "derive-new",
 "fst",
 "itertools 0.7.8",
 "json",
 "log",
 "rls-data",
 "rls-span",
 "serde",
 "serde_json",
A
Alex Crichton 已提交
3039 3040
]

3041 3042
[[package]]
name = "rls-data"
3043
version = "0.19.0"
3044
source = "registry+https://github.com/rust-lang/crates.io-index"
3045
checksum = "76c72ea97e045be5f6290bb157ebdc5ee9f2b093831ff72adfaf59025cf5c491"
3046
dependencies = [
3047 3048
 "rls-span",
 "serde",
3049 3050
]

3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062
[[package]]
name = "rls-ipc"
version = "0.1.0"
dependencies = [
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "jsonrpc-ipc-server",
 "rls-data",
 "serde",
]

N
Nick Cameron 已提交
3063 3064
[[package]]
name = "rls-rustc"
I
Igor Matuszewski 已提交
3065
version = "0.6.0"
3066 3067
dependencies = [
 "clippy_lints",
R
Ralf Jung 已提交
3068
 "env_logger 0.7.1",
3069 3070 3071
 "failure",
 "futures",
 "log",
3072
 "rand 0.7.0",
3073 3074 3075 3076 3077
 "rls-data",
 "rls-ipc",
 "serde",
 "tokio",
]
N
Nick Cameron 已提交
3078

3079 3080
[[package]]
name = "rls-span"
3081
version = "0.5.1"
3082
source = "registry+https://github.com/rust-lang/crates.io-index"
3083
checksum = "f1cb4694410d8d2ce43ccff3682f1c782158a018d5a9a92185675677f7533eb3"
3084
dependencies = [
3085
 "serde",
3086 3087 3088 3089
]

[[package]]
name = "rls-vfs"
3090
version = "0.8.0"
3091
source = "registry+https://github.com/rust-lang/crates.io-index"
3092
checksum = "ce4b57b25b4330ed5ec14028fc02141e083ddafda327e7eb598dc0569c8c83c9"
3093
dependencies = [
3094 3095
 "log",
 "rls-span",
3096 3097
]

3098 3099
[[package]]
name = "rustbook"
3100 3101
version = "0.1.0"
dependencies = [
3102 3103 3104 3105
 "clap",
 "failure",
 "mdbook",
 "mdbook-linkcheck",
3106
 "rustc-workspace-hack",
3107
]
3108 3109 3110 3111 3112

[[package]]
name = "rustc"
version = "0.0.0"
dependencies = [
3113 3114 3115 3116
 "arena",
 "backtrace",
 "bitflags",
 "byteorder",
T
Tyler Mandry 已提交
3117
 "cc",
3118 3119 3120 3121 3122 3123 3124
 "chalk-engine",
 "fmt_macros",
 "graphviz",
 "jobserver",
 "log",
 "measureme",
 "num_cpus",
3125
 "parking_lot 0.9.0",
3126
 "polonius-engine",
J
Josh Stone 已提交
3127 3128
 "rustc-rayon 0.3.0",
 "rustc-rayon-core 0.3.0",
3129 3130 3131 3132
 "rustc_apfloat",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_fs_util",
3133
 "rustc_index",
3134 3135 3136 3137
 "rustc_macros",
 "rustc_target",
 "scoped-tls",
 "serialize",
R
Ralf Jung 已提交
3138
 "smallvec 1.0.0",
3139 3140
 "syntax",
 "syntax_pos",
3141 3142
]

I
Igor Matuszewski 已提交
3143 3144
[[package]]
name = "rustc-ap-arena"
I
Igor Matuszewski 已提交
3145
version = "606.0.0"
I
Igor Matuszewski 已提交
3146
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3147
checksum = "a623fd4805842e9bd0bb6e6dace63efede0ee22de4522a0b03b7c3d15a22f009"
I
Igor Matuszewski 已提交
3148
dependencies = [
3149
 "rustc-ap-rustc_data_structures",
R
Ralf Jung 已提交
3150
 "smallvec 0.6.10",
I
Igor Matuszewski 已提交
3151 3152 3153 3154
]

[[package]]
name = "rustc-ap-graphviz"
I
Igor Matuszewski 已提交
3155
version = "606.0.0"
I
Igor Matuszewski 已提交
3156
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3157
checksum = "ee549ade784b444ef10c0240c3487ed785aa65d711071f7984246b15329a17b6"
I
Igor Matuszewski 已提交
3158 3159 3160

[[package]]
name = "rustc-ap-rustc_data_structures"
I
Igor Matuszewski 已提交
3161
version = "606.0.0"
I
Igor Matuszewski 已提交
3162
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3163
checksum = "ca545744a5a9b42e3d0410d6290d40de96dd567253fe77f310c1de4afd213dd4"
I
Igor Matuszewski 已提交
3164
dependencies = [
3165 3166 3167 3168 3169 3170 3171
 "cfg-if",
 "crossbeam-utils 0.6.5",
 "ena",
 "indexmap",
 "jobserver",
 "lazy_static 1.3.0",
 "log",
I
Igor Matuszewski 已提交
3172
 "parking_lot 0.9.0",
3173
 "rustc-ap-graphviz",
I
Igor Matuszewski 已提交
3174
 "rustc-ap-rustc_index",
3175 3176
 "rustc-ap-serialize",
 "rustc-hash",
J
Josh Stone 已提交
3177 3178
 "rustc-rayon 0.2.0",
 "rustc-rayon-core 0.2.0",
R
Ralf Jung 已提交
3179
 "smallvec 0.6.10",
3180
 "stable_deref_trait",
I
Igor Matuszewski 已提交
3181 3182 3183 3184
]

[[package]]
name = "rustc-ap-rustc_errors"
I
Igor Matuszewski 已提交
3185
version = "606.0.0"
I
Igor Matuszewski 已提交
3186
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3187
checksum = "a6967a41ed38ef4bce0f559fe9a4801d8ba12ac032f40a12a55e72f79d52c9bb"
I
Igor Matuszewski 已提交
3188
dependencies = [
3189 3190 3191 3192 3193 3194
 "annotate-snippets",
 "atty",
 "log",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-serialize",
 "rustc-ap-syntax_pos",
3195
 "term_size",
3196 3197
 "termcolor",
 "unicode-width",
I
Igor Matuszewski 已提交
3198 3199
]

I
Igor Matuszewski 已提交
3200 3201 3202 3203 3204 3205 3206
[[package]]
name = "rustc-ap-rustc_index"
version = "606.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "457a5c204ae2fdaa5bdb5b196e58ca59896870d80445fe423063c9453496e3ea"
dependencies = [
 "rustc-ap-serialize",
R
Ralf Jung 已提交
3207
 "smallvec 0.6.10",
I
Igor Matuszewski 已提交
3208 3209
]

I
Igor Matuszewski 已提交
3210 3211
[[package]]
name = "rustc-ap-rustc_lexer"
I
Igor Matuszewski 已提交
3212
version = "606.0.0"
I
Igor Matuszewski 已提交
3213
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3214
checksum = "ed0c064676f8a08e42a36b0d4e4a102465fb0f4b75e11436cb7f66d2c3fa7139"
3215 3216 3217
dependencies = [
 "unicode-xid 0.2.0",
]
I
Igor Matuszewski 已提交
3218 3219 3220

[[package]]
name = "rustc-ap-rustc_macros"
I
Igor Matuszewski 已提交
3221
version = "606.0.0"
I
Igor Matuszewski 已提交
3222
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3223
checksum = "b2d77e46159c5288c585decbcdc9d742889c65e307c31e104c7a36d63fe1f5d0"
I
Igor Matuszewski 已提交
3224
dependencies = [
3225
 "itertools 0.8.0",
3226 3227 3228
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
3229
 "synstructure 0.10.2",
I
Igor Matuszewski 已提交
3230 3231 3232 3233
]

[[package]]
name = "rustc-ap-rustc_target"
I
Igor Matuszewski 已提交
3234
version = "606.0.0"
I
Igor Matuszewski 已提交
3235
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3236
checksum = "86ca895350b0de14d064b499168c93fa183958d5462eb042c927d93623e41ec1"
I
Igor Matuszewski 已提交
3237
dependencies = [
3238 3239 3240
 "bitflags",
 "log",
 "rustc-ap-rustc_data_structures",
I
Igor Matuszewski 已提交
3241
 "rustc-ap-rustc_index",
3242 3243
 "rustc-ap-serialize",
 "rustc-ap-syntax_pos",
I
Igor Matuszewski 已提交
3244 3245 3246 3247
]

[[package]]
name = "rustc-ap-serialize"
I
Igor Matuszewski 已提交
3248
version = "606.0.0"
I
Igor Matuszewski 已提交
3249
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3250
checksum = "92679240e86f4583cc05f8dcf6439bdab87bac9e6555718469176de9bd52ba20"
I
Igor Matuszewski 已提交
3251
dependencies = [
3252
 "indexmap",
R
Ralf Jung 已提交
3253
 "smallvec 0.6.10",
I
Igor Matuszewski 已提交
3254 3255 3256 3257
]

[[package]]
name = "rustc-ap-syntax"
I
Igor Matuszewski 已提交
3258
version = "606.0.0"
I
Igor Matuszewski 已提交
3259
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3260
checksum = "0a0c30f8e38c847dbfd9e2f1e472ab06d0bd0a23ab53ae4c5a44912842ce834e"
I
Igor Matuszewski 已提交
3261
dependencies = [
3262 3263 3264 3265 3266
 "bitflags",
 "lazy_static 1.3.0",
 "log",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
I
Igor Matuszewski 已提交
3267
 "rustc-ap-rustc_index",
3268 3269 3270 3271 3272
 "rustc-ap-rustc_lexer",
 "rustc-ap-rustc_target",
 "rustc-ap-serialize",
 "rustc-ap-syntax_pos",
 "scoped-tls",
R
Ralf Jung 已提交
3273
 "smallvec 0.6.10",
I
Igor Matuszewski 已提交
3274 3275 3276 3277
]

[[package]]
name = "rustc-ap-syntax_pos"
I
Igor Matuszewski 已提交
3278
version = "606.0.0"
I
Igor Matuszewski 已提交
3279
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3280
checksum = "2bdaa0fb40143b4b878256ac4e2b498885daafc269502504d91929eab4744bf4"
I
Igor Matuszewski 已提交
3281
dependencies = [
3282 3283 3284
 "cfg-if",
 "rustc-ap-arena",
 "rustc-ap-rustc_data_structures",
I
Igor Matuszewski 已提交
3285
 "rustc-ap-rustc_index",
3286 3287 3288 3289
 "rustc-ap-rustc_macros",
 "rustc-ap-serialize",
 "scoped-tls",
 "unicode-width",
I
Igor Matuszewski 已提交
3290 3291
]

3292 3293
[[package]]
name = "rustc-demangle"
3294
version = "0.1.16"
3295
source = "registry+https://github.com/rust-lang/crates.io-index"
3296
checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
3297
dependencies = [
3298 3299
 "compiler_builtins",
 "rustc-std-workspace-core",
3300
]
3301

3302 3303
[[package]]
name = "rustc-hash"
3304
version = "1.0.1"
3305
source = "registry+https://github.com/rust-lang/crates.io-index"
3306
checksum = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8"
3307
dependencies = [
3308
 "byteorder",
3309
]
3310

3311 3312 3313 3314
[[package]]
name = "rustc-main"
version = "0.0.0"
dependencies = [
3315 3316 3317 3318
 "jemalloc-sys",
 "rustc_codegen_ssa",
 "rustc_driver",
 "rustc_target",
3319 3320
]

J
John Kåre Alsaker 已提交
3321 3322 3323 3324
[[package]]
name = "rustc-rayon"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
3325
checksum = "0d2e07e19601f21c59aad953c2632172ba70cb27e685771514ea66e4062b3363"
J
John Kåre Alsaker 已提交
3326
dependencies = [
3327 3328
 "crossbeam-deque 0.2.0",
 "either",
J
Josh Stone 已提交
3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340
 "rustc-rayon-core 0.2.0",
]

[[package]]
name = "rustc-rayon"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f32767f90d938f1b7199a174ef249ae1924f6e5bbdb9d112fea141e016f25b3a"
dependencies = [
 "crossbeam-deque 0.7.1",
 "either",
 "rustc-rayon-core 0.3.0",
J
John Kåre Alsaker 已提交
3341 3342 3343 3344 3345 3346
]

[[package]]
name = "rustc-rayon-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
3347
checksum = "79d38ca7cbc22fa59f09d8534ea4b27f67b0facf0cbe274433aceea227a02543"
J
John Kåre Alsaker 已提交
3348
dependencies = [
3349 3350 3351 3352
 "crossbeam-deque 0.2.0",
 "lazy_static 1.3.0",
 "libc",
 "num_cpus",
J
John Kåre Alsaker 已提交
3353 3354
]

J
Josh Stone 已提交
3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367
[[package]]
name = "rustc-rayon-core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2427831f0053ea3ea73559c8eabd893133a51b251d142bacee53c62a288cb3"
dependencies = [
 "crossbeam-deque 0.7.1",
 "crossbeam-queue",
 "crossbeam-utils 0.6.5",
 "lazy_static 1.3.0",
 "num_cpus",
]

3368 3369
[[package]]
name = "rustc-std-workspace-alloc"
3370
version = "1.99.0"
3371
dependencies = [
3372
 "alloc",
3373 3374
]

3375 3376
[[package]]
name = "rustc-std-workspace-core"
3377
version = "1.99.0"
3378
dependencies = [
3379
 "core",
3380 3381
]

3382 3383
[[package]]
name = "rustc-std-workspace-std"
3384
version = "1.99.0"
3385 3386 3387 3388
dependencies = [
 "std",
]

A
Alex Crichton 已提交
3389 3390 3391 3392
[[package]]
name = "rustc-workspace-hack"
version = "1.0.0"
dependencies = [
3393 3394 3395
 "crossbeam-utils 0.6.5",
 "serde",
 "serde_json",
R
Ralf Jung 已提交
3396
 "smallvec 0.6.10",
M
msizanoen1 已提交
3397
 "syn 0.15.35",
A
Aaron Hill 已提交
3398
 "url 2.1.0",
3399
 "winapi 0.3.6",
A
Alex Crichton 已提交
3400 3401
]

3402 3403 3404 3405
[[package]]
name = "rustc_apfloat"
version = "0.0.0"
dependencies = [
3406
 "bitflags",
R
Ralf Jung 已提交
3407
 "smallvec 1.0.0",
3408 3409
]

J
Jorge Aparicio 已提交
3410 3411 3412 3413
[[package]]
name = "rustc_asan"
version = "0.0.0"
dependencies = [
3414 3415 3416 3417 3418
 "alloc",
 "build_helper",
 "cmake",
 "compiler_builtins",
 "core",
J
Jorge Aparicio 已提交
3419 3420
]

I
Irina Popa 已提交
3421 3422 3423 3424
[[package]]
name = "rustc_codegen_llvm"
version = "0.0.0"
dependencies = [
3425
 "rustc_llvm",
I
Irina Popa 已提交
3426 3427
]

3428 3429 3430
[[package]]
name = "rustc_codegen_ssa"
version = "0.0.0"
3431
dependencies = [
3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445
 "bitflags",
 "cc",
 "jobserver",
 "libc",
 "log",
 "memmap",
 "num_cpus",
 "rustc",
 "rustc_apfloat",
 "rustc_codegen_utils",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_fs_util",
 "rustc_incremental",
3446
 "rustc_index",
3447 3448 3449 3450 3451
 "rustc_target",
 "serialize",
 "syntax",
 "syntax_pos",
 "tempfile",
3452
]
3453

I
Irina Popa 已提交
3454 3455 3456 3457
[[package]]
name = "rustc_codegen_utils"
version = "0.0.0"
dependencies = [
3458 3459 3460 3461 3462 3463 3464 3465 3466
 "log",
 "punycode",
 "rustc",
 "rustc-demangle",
 "rustc_data_structures",
 "rustc_metadata",
 "rustc_target",
 "syntax",
 "syntax_pos",
I
Irina Popa 已提交
3467 3468
]

3469 3470 3471 3472
[[package]]
name = "rustc_data_structures"
version = "0.0.0"
dependencies = [
3473 3474 3475 3476 3477 3478 3479 3480
 "cfg-if",
 "crossbeam-utils 0.6.5",
 "ena",
 "graphviz",
 "indexmap",
 "jobserver",
 "lazy_static 1.3.0",
 "log",
3481
 "parking_lot 0.9.0",
3482
 "rustc-hash",
J
Josh Stone 已提交
3483 3484
 "rustc-rayon 0.3.0",
 "rustc-rayon-core 0.3.0",
C
csmoe 已提交
3485
 "rustc_index",
3486
 "serialize",
R
Ralf Jung 已提交
3487
 "smallvec 1.0.0",
3488
 "stable_deref_trait",
3489 3490 3491 3492 3493 3494
]

[[package]]
name = "rustc_driver"
version = "0.0.0"
dependencies = [
R
Ralf Jung 已提交
3495
 "env_logger 0.7.1",
3496
 "graphviz",
3497
 "lazy_static 1.3.0",
3498 3499 3500 3501 3502 3503
 "log",
 "rustc",
 "rustc_codegen_utils",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_interface",
3504
 "rustc_lint",
3505 3506
 "rustc_metadata",
 "rustc_mir",
3507
 "rustc_plugin",
3508
 "rustc_plugin_impl",
3509 3510 3511 3512 3513
 "rustc_save_analysis",
 "rustc_target",
 "serialize",
 "syntax",
 "syntax_pos",
3514 3515 3516 3517 3518 3519
]

[[package]]
name = "rustc_errors"
version = "0.0.0"
dependencies = [
3520 3521 3522 3523 3524 3525
 "annotate-snippets",
 "atty",
 "log",
 "rustc_data_structures",
 "serialize",
 "syntax_pos",
3526
 "term_size",
3527 3528
 "termcolor",
 "unicode-width",
3529 3530
]

3531 3532 3533 3534
[[package]]
name = "rustc_fs_util"
version = "0.0.0"

3535 3536 3537 3538
[[package]]
name = "rustc_incremental"
version = "0.0.0"
dependencies = [
3539 3540
 "graphviz",
 "log",
M
Mateusz Mikuła 已提交
3541
 "rand 0.7.0",
3542 3543 3544 3545 3546 3547
 "rustc",
 "rustc_data_structures",
 "rustc_fs_util",
 "serialize",
 "syntax",
 "syntax_pos",
3548 3549
]

C
csmoe 已提交
3550 3551 3552 3553 3554
[[package]]
name = "rustc_index"
version = "0.0.0"
dependencies = [
 "serialize",
R
Ralf Jung 已提交
3555
 "smallvec 1.0.0",
C
csmoe 已提交
3556 3557
]

3558 3559 3560 3561
[[package]]
name = "rustc_interface"
version = "0.0.0"
dependencies = [
3562
 "log",
3563
 "once_cell",
3564
 "rustc",
J
Josh Stone 已提交
3565
 "rustc-rayon 0.3.0",
3566 3567 3568 3569 3570 3571 3572 3573 3574
 "rustc_codegen_ssa",
 "rustc_codegen_utils",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_incremental",
 "rustc_lint",
 "rustc_metadata",
 "rustc_mir",
 "rustc_passes",
3575
 "rustc_plugin_impl",
3576 3577
 "rustc_privacy",
 "rustc_resolve",
3578
 "rustc_target",
3579 3580 3581
 "rustc_traits",
 "rustc_typeck",
 "serialize",
R
Ralf Jung 已提交
3582
 "smallvec 1.0.0",
3583
 "syntax",
3584
 "syntax_expand",
3585 3586 3587
 "syntax_ext",
 "syntax_pos",
 "tempfile",
3588 3589
]

A
Aleksey Kladov 已提交
3590 3591 3592 3593
[[package]]
name = "rustc_lexer"
version = "0.1.0"
dependencies = [
3594
 "unicode-xid 0.2.0",
A
Aleksey Kladov 已提交
3595 3596
]

3597 3598 3599 3600
[[package]]
name = "rustc_lint"
version = "0.0.0"
dependencies = [
3601 3602 3603
 "log",
 "rustc",
 "rustc_data_structures",
3604
 "rustc_index",
3605 3606 3607
 "rustc_target",
 "syntax",
 "syntax_pos",
3608 3609 3610 3611 3612 3613
]

[[package]]
name = "rustc_llvm"
version = "0.0.0"
dependencies = [
3614 3615
 "build_helper",
 "cc",
3616 3617
]

J
Jorge Aparicio 已提交
3618 3619 3620 3621
[[package]]
name = "rustc_lsan"
version = "0.0.0"
dependencies = [
3622 3623 3624 3625 3626
 "alloc",
 "build_helper",
 "cmake",
 "compiler_builtins",
 "core",
J
Jorge Aparicio 已提交
3627 3628
]

J
John Kåre Alsaker 已提交
3629 3630 3631 3632
[[package]]
name = "rustc_macros"
version = "0.1.0"
dependencies = [
3633
 "itertools 0.8.0",
3634 3635 3636 3637
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
 "synstructure 0.12.1",
J
John Kåre Alsaker 已提交
3638 3639
]

3640 3641 3642 3643
[[package]]
name = "rustc_metadata"
version = "0.0.0"
dependencies = [
3644 3645 3646 3647 3648 3649
 "flate2",
 "log",
 "memmap",
 "rustc",
 "rustc_data_structures",
 "rustc_errors",
3650
 "rustc_index",
3651 3652
 "rustc_target",
 "serialize",
R
Ralf Jung 已提交
3653
 "smallvec 1.0.0",
3654 3655
 "stable_deref_trait",
 "syntax",
3656
 "syntax_expand",
3657
 "syntax_pos",
3658 3659 3660 3661 3662 3663
]

[[package]]
name = "rustc_mir"
version = "0.0.0"
dependencies = [
3664 3665 3666 3667 3668 3669 3670 3671 3672 3673
 "arena",
 "either",
 "graphviz",
 "log",
 "log_settings",
 "polonius-engine",
 "rustc",
 "rustc_apfloat",
 "rustc_data_structures",
 "rustc_errors",
3674
 "rustc_index",
3675
 "rustc_lexer",
3676 3677
 "rustc_target",
 "serialize",
R
Ralf Jung 已提交
3678
 "smallvec 1.0.0",
3679 3680
 "syntax",
 "syntax_pos",
3681 3682
]

J
Jorge Aparicio 已提交
3683 3684 3685 3686
[[package]]
name = "rustc_msan"
version = "0.0.0"
dependencies = [
3687 3688 3689 3690 3691
 "alloc",
 "build_helper",
 "cmake",
 "compiler_builtins",
 "core",
J
Jorge Aparicio 已提交
3692 3693
]

3694 3695 3696 3697
[[package]]
name = "rustc_passes"
version = "0.0.0"
dependencies = [
3698 3699 3700 3701
 "log",
 "rustc",
 "rustc_data_structures",
 "rustc_errors",
3702 3703
 "rustc_index",
 "rustc_target",
3704 3705
 "syntax",
 "syntax_pos",
3706 3707
]

3708 3709 3710 3711 3712 3713 3714
[[package]]
name = "rustc_plugin"
version = "0.0.0"
dependencies = [
 "rustc_plugin_impl",
]

3715
[[package]]
3716
name = "rustc_plugin_impl"
3717 3718
version = "0.0.0"
dependencies = [
3719 3720 3721
 "rustc",
 "rustc_metadata",
 "syntax",
3722
 "syntax_expand",
3723
 "syntax_pos",
3724 3725 3726 3727 3728 3729
]

[[package]]
name = "rustc_privacy"
version = "0.0.0"
dependencies = [
3730 3731 3732 3733 3734 3735
 "log",
 "rustc",
 "rustc_data_structures",
 "rustc_typeck",
 "syntax",
 "syntax_pos",
3736 3737 3738 3739 3740 3741
]

[[package]]
name = "rustc_resolve"
version = "0.0.0"
dependencies = [
3742 3743 3744 3745 3746 3747 3748
 "arena",
 "bitflags",
 "log",
 "rustc",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_metadata",
R
Ralf Jung 已提交
3749
 "smallvec 1.0.0",
3750
 "syntax",
3751
 "syntax_expand",
3752
 "syntax_pos",
3753 3754 3755 3756 3757 3758
]

[[package]]
name = "rustc_save_analysis"
version = "0.0.0"
dependencies = [
3759 3760 3761 3762 3763 3764 3765 3766 3767
 "log",
 "rls-data",
 "rls-span",
 "rustc",
 "rustc_codegen_utils",
 "rustc_data_structures",
 "serde_json",
 "syntax",
 "syntax_pos",
3768 3769
]

3770 3771 3772 3773
[[package]]
name = "rustc_target"
version = "0.0.0"
dependencies = [
3774 3775 3776
 "bitflags",
 "log",
 "rustc_data_structures",
3777
 "rustc_index",
3778 3779
 "serialize",
 "syntax_pos",
3780 3781
]

M
Matthias Krüger 已提交
3782 3783
[[package]]
name = "rustc_tools_util"
I
Igor Matuszewski 已提交
3784
version = "0.2.0"
3785 3786 3787

[[package]]
name = "rustc_tools_util"
O
Oliver Scherer 已提交
3788
version = "0.2.0"
I
Igor Matuszewski 已提交
3789
source = "registry+https://github.com/rust-lang/crates.io-index"
3790
checksum = "b725dadae9fabc488df69a287f5a99c5eaf5d10853842a8a3dfac52476f544ee"
M
Matthias Krüger 已提交
3791

3792 3793 3794 3795
[[package]]
name = "rustc_traits"
version = "0.0.0"
dependencies = [
3796 3797 3798 3799 3800
 "chalk-engine",
 "log",
 "rustc",
 "rustc_data_structures",
 "rustc_target",
R
Ralf Jung 已提交
3801
 "smallvec 1.0.0",
3802 3803
 "syntax",
 "syntax_pos",
3804 3805
]

J
Jorge Aparicio 已提交
3806 3807 3808 3809
[[package]]
name = "rustc_tsan"
version = "0.0.0"
dependencies = [
3810 3811 3812 3813 3814
 "alloc",
 "build_helper",
 "cmake",
 "compiler_builtins",
 "core",
J
Jorge Aparicio 已提交
3815 3816
]

3817 3818 3819 3820
[[package]]
name = "rustc_typeck"
version = "0.0.0"
dependencies = [
3821 3822 3823 3824 3825
 "arena",
 "log",
 "rustc",
 "rustc_data_structures",
 "rustc_errors",
3826
 "rustc_index",
3827
 "rustc_target",
R
Ralf Jung 已提交
3828
 "smallvec 1.0.0",
3829 3830
 "syntax",
 "syntax_pos",
3831 3832
]

3833 3834
[[package]]
name = "rustc_version"
3835
version = "0.2.3"
3836
source = "registry+https://github.com/rust-lang/crates.io-index"
3837
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
3838
dependencies = [
3839
 "semver",
3840 3841
]

3842 3843 3844 3845
[[package]]
name = "rustdoc"
version = "0.0.0"
dependencies = [
3846
 "minifier",
L
Lzu Tao 已提交
3847
 "pulldown-cmark 0.5.3",
J
Josh Stone 已提交
3848
 "rustc-rayon 0.3.0",
3849
 "tempfile",
M
Mark Simulacrum 已提交
3850 3851
]

G
Guillaume Gomez 已提交
3852 3853 3854 3855
[[package]]
name = "rustdoc-themes"
version = "0.1.0"

M
Mark Simulacrum 已提交
3856 3857 3858 3859
[[package]]
name = "rustdoc-tool"
version = "0.0.0"
dependencies = [
3860
 "rustdoc",
3861 3862
]

3863 3864
[[package]]
name = "rustfix"
E
Eric Huss 已提交
3865
version = "0.4.6"
A
Alex Crichton 已提交
3866
source = "registry+https://github.com/rust-lang/crates.io-index"
3867
checksum = "7150ac777a2931a53489f5a41eb0937b84e3092a20cd0e73ad436b65b507f607"
A
Alex Crichton 已提交
3868
dependencies = [
3869 3870 3871 3872
 "failure",
 "log",
 "serde",
 "serde_json",
3873 3874
]

T
topecongiro 已提交
3875 3876
[[package]]
name = "rustfmt-config_proc_macro"
3877
version = "0.2.0"
T
topecongiro 已提交
3878
dependencies = [
3879 3880
 "proc-macro2 1.0.3",
 "quote 1.0.2",
3881
 "serde",
3882
 "syn 1.0.5",
T
topecongiro 已提交
3883 3884
]

I
Igor Matuszewski 已提交
3885 3886
[[package]]
name = "rustfmt-nightly"
I
Igor Matuszewski 已提交
3887
version = "1.4.9"
I
Igor Matuszewski 已提交
3888
dependencies = [
3889 3890
 "annotate-snippets",
 "bytecount",
M
Manish Goregaokar 已提交
3891
 "cargo_metadata 0.8.0",
3892 3893 3894
 "derive-new",
 "diff",
 "dirs",
A
Alex Crichton 已提交
3895
 "env_logger 0.6.2",
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909
 "failure",
 "getopts",
 "ignore",
 "itertools 0.8.0",
 "lazy_static 1.3.0",
 "log",
 "regex",
 "rustc-ap-rustc_target",
 "rustc-ap-syntax",
 "rustc-ap-syntax_pos",
 "rustc-workspace-hack",
 "rustfmt-config_proc_macro",
 "serde",
 "serde_json",
3910
 "structopt 0.3.1",
3911
 "term 0.6.0",
E
Eric Huss 已提交
3912
 "toml",
3913 3914 3915
 "unicode-segmentation",
 "unicode-width",
 "unicode_categories",
I
Igor Matuszewski 已提交
3916 3917
]

A
Alex Crichton 已提交
3918 3919
[[package]]
name = "ryu"
E
Eric Huss 已提交
3920
version = "1.0.0"
A
Alex Crichton 已提交
3921
source = "registry+https://github.com/rust-lang/crates.io-index"
3922
checksum = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997"
A
Alex Crichton 已提交
3923

3924 3925
[[package]]
name = "same-file"
3926
version = "1.0.4"
3927
source = "registry+https://github.com/rust-lang/crates.io-index"
3928
checksum = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267"
3929
dependencies = [
3930
 "winapi-util",
3931 3932 3933 3934
]

[[package]]
name = "schannel"
3935
version = "0.1.14"
3936
source = "registry+https://github.com/rust-lang/crates.io-index"
3937
checksum = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56"
3938
dependencies = [
3939 3940
 "lazy_static 1.3.0",
 "winapi 0.3.6",
3941 3942
]

M
Marcel Hellwig 已提交
3943 3944 3945 3946
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
3947
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
M
Marcel Hellwig 已提交
3948

F
flip1995 已提交
3949 3950 3951 3952
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
3953
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
F
flip1995 已提交
3954

O
Oliver Schneider 已提交
3955 3956 3957 3958
[[package]]
name = "scopeguard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
3959
checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
O
Oliver Schneider 已提交
3960

R
Ralf Jung 已提交
3961 3962 3963 3964
[[package]]
name = "scopeguard"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
3965
checksum = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
R
Ralf Jung 已提交
3966

3967 3968 3969 3970
[[package]]
name = "security-framework"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
3971
checksum = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2"
3972
dependencies = [
3973 3974 3975 3976
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
3977 3978 3979 3980 3981 3982
]

[[package]]
name = "security-framework-sys"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
3983
checksum = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56"
3984
dependencies = [
3985
 "core-foundation-sys",
3986 3987
]

3988 3989 3990 3991
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
3992
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
3993
dependencies = [
3994 3995
 "semver-parser",
 "serde",
3996 3997 3998 3999 4000 4001
]

[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4002
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
4003 4004 4005

[[package]]
name = "serde"
F
flip1995 已提交
4006
version = "1.0.99"
4007
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
4008
checksum = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f"
E
Eric Huss 已提交
4009
dependencies = [
4010
 "serde_derive",
E
Eric Huss 已提交
4011
]
4012 4013 4014

[[package]]
name = "serde_derive"
4015
version = "1.0.81"
4016
source = "registry+https://github.com/rust-lang/crates.io-index"
4017
checksum = "477b13b646f5b5b56fc95bedfc3b550d12141ce84f466f6c44b9a17589923885"
4018
dependencies = [
4019 4020 4021
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
4022
]
S
Steve Klabnik 已提交
4023

F
flip1995 已提交
4024 4025 4026 4027 4028 4029 4030 4031 4032
[[package]]
name = "serde_ignored"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c24bbb8f4b81834f618cd3e28698235c2fba06ddf7f4fbe30519dd081364e59"
dependencies = [
 "serde",
]

S
Steve Klabnik 已提交
4033 4034
[[package]]
name = "serde_json"
E
Eric Huss 已提交
4035
version = "1.0.40"
S
Steve Klabnik 已提交
4036
source = "registry+https://github.com/rust-lang/crates.io-index"
4037
checksum = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704"
S
Steve Klabnik 已提交
4038
dependencies = [
4039 4040 4041
 "itoa",
 "ryu",
 "serde",
S
Steve Klabnik 已提交
4042 4043
]

4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054
[[package]]
name = "serde_repr"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd02c7587ec314570041b2754829f84d873ced14a96d1fd1823531e11db40573"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
]

4055 4056 4057 4058
[[package]]
name = "serde_urlencoded"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
4059
checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
4060
dependencies = [
4061 4062 4063 4064
 "dtoa",
 "itoa",
 "serde",
 "url 1.7.2",
4065 4066
]

4067 4068 4069
[[package]]
name = "serialize"
version = "0.0.0"
4070
dependencies = [
4071
 "indexmap",
R
Ralf Jung 已提交
4072
 "smallvec 1.0.0",
4073
]
4074

4075 4076 4077 4078
[[package]]
name = "sha-1"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4079
checksum = "51b9d1f3b5de8a167ab06834a7c883bd197f2191e1dda1a22d9ccfeedbf9aded"
4080
dependencies = [
4081 4082 4083 4084
 "block-buffer",
 "byte-tools",
 "digest",
 "fake-simd",
4085 4086
]

4087 4088
[[package]]
name = "shell-escape"
A
Alex Crichton 已提交
4089
version = "0.1.4"
4090
source = "registry+https://github.com/rust-lang/crates.io-index"
4091
checksum = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
4092

S
steveklabnik 已提交
4093 4094 4095 4096
[[package]]
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4097
checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
S
steveklabnik 已提交
4098

4099 4100 4101 4102
[[package]]
name = "signal-hook"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
4103
checksum = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4"
4104
dependencies = [
4105 4106
 "arc-swap",
 "libc",
4107 4108
]

S
steveklabnik 已提交
4109 4110 4111 4112
[[package]]
name = "siphasher"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4113
checksum = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
S
steveklabnik 已提交
4114

E
Eric Huss 已提交
4115 4116 4117 4118
[[package]]
name = "sized-chunks"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4119
checksum = "a2a2eb3fe454976eefb479f78f9b394d34d661b647c6326a3a6e66f68bb12c26"
E
Eric Huss 已提交
4120
dependencies = [
4121
 "typenum",
E
Eric Huss 已提交
4122 4123
]

4124 4125 4126 4127
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4128
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
4129

4130 4131
[[package]]
name = "smallvec"
E
Eric Huss 已提交
4132
version = "0.6.10"
4133
source = "registry+https://github.com/rust-lang/crates.io-index"
4134
checksum = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
4135

R
Ralf Jung 已提交
4136 4137 4138 4139 4140 4141
[[package]]
name = "smallvec"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ecf3b85f68e8abaa7555aa5abdb1153079387e60b718283d732f03897fcfc86"

M
Mark Simulacrum 已提交
4142 4143
[[package]]
name = "socket2"
4144
version = "0.3.8"
M
Mark Simulacrum 已提交
4145
source = "registry+https://github.com/rust-lang/crates.io-index"
4146
checksum = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7"
M
Mark Simulacrum 已提交
4147
dependencies = [
4148 4149 4150 4151
 "cfg-if",
 "libc",
 "redox_syscall",
 "winapi 0.3.6",
M
Mark Simulacrum 已提交
4152 4153
]

4154 4155
[[package]]
name = "stable_deref_trait"
A
Alex Crichton 已提交
4156
version = "1.1.0"
4157
source = "registry+https://github.com/rust-lang/crates.io-index"
4158
checksum = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa"
4159

4160 4161 4162 4163
[[package]]
name = "std"
version = "0.0.0"
dependencies = [
4164 4165 4166 4167 4168 4169 4170
 "alloc",
 "backtrace",
 "cfg-if",
 "compiler_builtins",
 "core",
 "dlmalloc",
 "fortanix-sgx-abi",
A
Alex Crichton 已提交
4171
 "hashbrown 0.6.2",
4172
 "hermit-abi",
4173 4174 4175 4176
 "libc",
 "panic_abort",
 "panic_unwind",
 "profiler_builtins",
M
Mateusz Mikuła 已提交
4177
 "rand 0.7.0",
4178 4179 4180 4181 4182
 "rustc_asan",
 "rustc_lsan",
 "rustc_msan",
 "rustc_tsan",
 "unwind",
N
newpavlov 已提交
4183
 "wasi",
4184 4185
]

4186 4187 4188 4189
[[package]]
name = "string"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4190
checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
4191
dependencies = [
4192
 "bytes",
4193 4194
]

S
steveklabnik 已提交
4195 4196
[[package]]
name = "string_cache"
A
Alex Crichton 已提交
4197
version = "0.7.3"
S
steveklabnik 已提交
4198
source = "registry+https://github.com/rust-lang/crates.io-index"
4199
checksum = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423"
S
steveklabnik 已提交
4200
dependencies = [
4201 4202 4203 4204 4205 4206 4207
 "lazy_static 1.3.0",
 "new_debug_unreachable",
 "phf_shared",
 "precomputed-hash",
 "serde",
 "string_cache_codegen",
 "string_cache_shared",
S
steveklabnik 已提交
4208 4209 4210 4211
]

[[package]]
name = "string_cache_codegen"
4212
version = "0.4.2"
S
steveklabnik 已提交
4213
source = "registry+https://github.com/rust-lang/crates.io-index"
4214
checksum = "1eea1eee654ef80933142157fdad9dd8bc43cf7c74e999e369263496f04ff4da"
S
steveklabnik 已提交
4215
dependencies = [
4216 4217
 "phf_generator",
 "phf_shared",
4218 4219
 "proc-macro2 0.4.30",
 "quote 0.6.12",
4220
 "string_cache_shared",
S
steveklabnik 已提交
4221 4222 4223 4224 4225 4226
]

[[package]]
name = "string_cache_shared"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4227
checksum = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
S
steveklabnik 已提交
4228

E
Eric Huss 已提交
4229 4230 4231 4232
[[package]]
name = "strip-ansi-escapes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4233
checksum = "9d63676e2abafa709460982ddc02a3bb586b6d15a49b75c212e06edd3933acee"
E
Eric Huss 已提交
4234
dependencies = [
4235
 "vte",
E
Eric Huss 已提交
4236 4237
]

4238 4239
[[package]]
name = "strsim"
4240
version = "0.8.0"
4241
source = "registry+https://github.com/rust-lang/crates.io-index"
4242
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
4243

T
topecongiro 已提交
4244 4245
[[package]]
name = "structopt"
T
topecongiro 已提交
4246
version = "0.2.18"
T
topecongiro 已提交
4247
source = "registry+https://github.com/rust-lang/crates.io-index"
4248
checksum = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7"
T
topecongiro 已提交
4249
dependencies = [
4250
 "clap",
4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261
 "structopt-derive 0.2.18",
]

[[package]]
name = "structopt"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ac9d6e93dd792b217bf89cda5c14566e3043960c6f9da890c2ba5d09d07804c"
dependencies = [
 "clap",
 "structopt-derive 0.3.1",
T
topecongiro 已提交
4262 4263 4264 4265
]

[[package]]
name = "structopt-derive"
T
topecongiro 已提交
4266
version = "0.2.18"
T
topecongiro 已提交
4267
source = "registry+https://github.com/rust-lang/crates.io-index"
4268
checksum = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107"
T
topecongiro 已提交
4269
dependencies = [
4270
 "heck",
4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
]

[[package]]
name = "structopt-derive"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ae9e5165d463a0dea76967d021f8d0f9316057bf5163aa2a4843790e842ff37"
dependencies = [
 "heck",
 "proc-macro-error",
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
T
topecongiro 已提交
4287 4288
]

M
Matt Ickstadt 已提交
4289 4290
[[package]]
name = "strum"
4291
version = "0.11.0"
M
Matt Ickstadt 已提交
4292
source = "registry+https://github.com/rust-lang/crates.io-index"
4293
checksum = "f6c3a2071519ab6a48f465808c4c1ffdd00dfc8e93111d02b4fc5abab177676e"
M
Matt Ickstadt 已提交
4294 4295 4296

[[package]]
name = "strum_macros"
4297
version = "0.11.0"
M
Matt Ickstadt 已提交
4298
source = "registry+https://github.com/rust-lang/crates.io-index"
4299
checksum = "8baacebd7b7c9b864d83a6ba7a246232983e277b86fa5cdec77f565715a4b136"
M
Matt Ickstadt 已提交
4300
dependencies = [
4301
 "heck",
4302 4303 4304
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
M
Matt Ickstadt 已提交
4305 4306
]

N
Nick Cameron 已提交
4307 4308
[[package]]
name = "syn"
E
Eric Huss 已提交
4309
version = "0.15.35"
N
Nick Cameron 已提交
4310
source = "registry+https://github.com/rust-lang/crates.io-index"
4311
checksum = "641e117d55514d6d918490e47102f7e08d096fdde360247e4a10f7a91a8478d3"
N
Nick Cameron 已提交
4312
dependencies = [
4313 4314
 "proc-macro2 0.4.30",
 "quote 0.6.12",
4315
 "unicode-xid 0.1.0",
A
Alex Crichton 已提交
4316 4317
]

4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328
[[package]]
name = "syn"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "unicode-xid 0.2.0",
]

A
Alex Crichton 已提交
4329 4330
[[package]]
name = "synstructure"
4331
version = "0.10.2"
A
Alex Crichton 已提交
4332
source = "registry+https://github.com/rust-lang/crates.io-index"
4333
checksum = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f"
A
Alex Crichton 已提交
4334
dependencies = [
4335 4336 4337
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
4338
 "unicode-xid 0.1.0",
A
Alex Crichton 已提交
4339 4340
]

4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352
[[package]]
name = "synstructure"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.5",
 "unicode-xid 0.2.0",
]

4353 4354 4355 4356
[[package]]
name = "syntax"
version = "0.0.0"
dependencies = [
4357 4358 4359 4360 4361
 "bitflags",
 "lazy_static 1.3.0",
 "log",
 "rustc_data_structures",
 "rustc_errors",
4362
 "rustc_index",
4363 4364 4365
 "rustc_lexer",
 "scoped-tls",
 "serialize",
R
Ralf Jung 已提交
4366
 "smallvec 1.0.0",
4367
 "syntax_pos",
4368 4369
]

4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382
[[package]]
name = "syntax_expand"
version = "0.0.0"
dependencies = [
 "bitflags",
 "lazy_static 1.3.0",
 "log",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_index",
 "rustc_lexer",
 "scoped-tls",
 "serialize",
R
Ralf Jung 已提交
4383
 "smallvec 1.0.0",
4384 4385 4386 4387
 "syntax",
 "syntax_pos",
]

4388 4389 4390 4391
[[package]]
name = "syntax_ext"
version = "0.0.0"
dependencies = [
4392 4393 4394 4395 4396
 "fmt_macros",
 "log",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_target",
R
Ralf Jung 已提交
4397
 "smallvec 1.0.0",
4398
 "syntax",
4399
 "syntax_expand",
4400
 "syntax_pos",
4401 4402 4403 4404 4405 4406
]

[[package]]
name = "syntax_pos"
version = "0.0.0"
dependencies = [
4407 4408 4409
 "arena",
 "cfg-if",
 "rustc_data_structures",
4410
 "rustc_index",
4411 4412 4413 4414
 "rustc_macros",
 "scoped-tls",
 "serialize",
 "unicode-width",
4415 4416
]

4417 4418 4419 4420
[[package]]
name = "take_mut"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4421
checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
4422

4423 4424
[[package]]
name = "tar"
4425
version = "0.4.20"
4426
source = "registry+https://github.com/rust-lang/crates.io-index"
4427
checksum = "a303ba60a099fcd2aaa646b14d2724591a96a75283e4b7ed3d1a1658909d9ae2"
4428
dependencies = [
4429 4430 4431 4432
 "filetime",
 "libc",
 "redox_syscall",
 "xattr",
4433 4434
]

A
Aleksey Kladov 已提交
4435 4436
[[package]]
name = "tempfile"
4437
version = "3.1.0"
A
Aleksey Kladov 已提交
4438
source = "registry+https://github.com/rust-lang/crates.io-index"
4439
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
A
Aleksey Kladov 已提交
4440
dependencies = [
4441 4442
 "cfg-if",
 "libc",
4443
 "rand 0.7.0",
4444 4445 4446
 "redox_syscall",
 "remove_dir_all",
 "winapi 0.3.6",
A
Aleksey Kladov 已提交
4447 4448
]

S
steveklabnik 已提交
4449 4450 4451 4452
[[package]]
name = "tendril"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4453
checksum = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
S
steveklabnik 已提交
4454
dependencies = [
4455 4456 4457
 "futf",
 "mac",
 "utf-8",
S
steveklabnik 已提交
4458 4459
]

4460 4461 4462
[[package]]
name = "term"
version = "0.0.0"
4463 4464 4465 4466
dependencies = [
 "core",
 "std",
]
4467

I
Igor Matuszewski 已提交
4468 4469 4470 4471
[[package]]
name = "term"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4472
checksum = "0dd90505d5006a4422d3520b30c781d480b3f36768c2fa2187c3e950bc110464"
I
Igor Matuszewski 已提交
4473
dependencies = [
4474 4475 4476
 "byteorder",
 "dirs",
 "winapi 0.3.6",
I
Igor Matuszewski 已提交
4477 4478
]

4479 4480 4481 4482 4483 4484 4485 4486 4487 4488
[[package]]
name = "term_size"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327"
dependencies = [
 "kernel32-sys",
 "libc",
 "winapi 0.2.8",
]
I
Igor Matuszewski 已提交
4489

4490 4491
[[package]]
name = "termcolor"
4492
version = "1.0.4"
4493
source = "registry+https://github.com/rust-lang/crates.io-index"
4494
checksum = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
4495
dependencies = [
4496
 "wincolor",
4497 4498
]

4499
[[package]]
O
Oliver Schneider 已提交
4500 4501
name = "termion"
version = "1.5.1"
4502
source = "registry+https://github.com/rust-lang/crates.io-index"
4503
checksum = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
4504
dependencies = [
4505 4506 4507
 "libc",
 "redox_syscall",
 "redox_termios",
4508 4509
]

4510 4511 4512 4513
[[package]]
name = "test"
version = "0.0.0"
dependencies = [
4514
 "core",
4515
 "getopts",
4516 4517 4518
 "libc",
 "panic_abort",
 "panic_unwind",
4519
 "proc_macro",
4520
 "std",
4521
 "term 0.0.0",
4522 4523
]

S
steveklabnik 已提交
4524 4525
[[package]]
name = "textwrap"
4526
version = "0.11.0"
S
steveklabnik 已提交
4527
source = "registry+https://github.com/rust-lang/crates.io-index"
4528
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
S
steveklabnik 已提交
4529
dependencies = [
4530
 "unicode-width",
S
steveklabnik 已提交
4531 4532
]

A
Alex Crichton 已提交
4533 4534
[[package]]
name = "thread_local"
A
Alex Crichton 已提交
4535
version = "0.3.6"
4536
source = "registry+https://github.com/rust-lang/crates.io-index"
4537
checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
4538
dependencies = [
4539
 "lazy_static 1.3.0",
4540 4541
]

4542 4543 4544
[[package]]
name = "tidy"
version = "0.1.0"
4545
dependencies = [
4546 4547 4548 4549 4550
 "lazy_static 1.3.0",
 "regex",
 "serde",
 "serde_json",
 "walkdir",
4551
]
4552

A
Alex Crichton 已提交
4553 4554
[[package]]
name = "time"
A
Alex Crichton 已提交
4555
version = "0.1.40"
A
Alex Crichton 已提交
4556
source = "registry+https://github.com/rust-lang/crates.io-index"
4557
checksum = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
A
Alex Crichton 已提交
4558
dependencies = [
4559 4560 4561
 "libc",
 "redox_syscall",
 "winapi 0.3.6",
A
Alex Crichton 已提交
4562 4563
]

4564 4565 4566 4567
[[package]]
name = "tokio"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
4568
checksum = "4790d0be6f4ba6ae4f48190efa2ed7780c9e3567796abdb285003cf39840d9c5"
4569
dependencies = [
4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584
 "bytes",
 "futures",
 "mio",
 "num_cpus",
 "tokio-codec",
 "tokio-current-thread",
 "tokio-executor",
 "tokio-fs",
 "tokio-io",
 "tokio-reactor",
 "tokio-tcp",
 "tokio-threadpool",
 "tokio-timer",
 "tokio-udp",
 "tokio-uds",
4585 4586
]

4587 4588 4589 4590
[[package]]
name = "tokio-buf"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4591
checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
4592
dependencies = [
4593 4594 4595
 "bytes",
 "either",
 "futures",
4596 4597
]

4598 4599 4600 4601
[[package]]
name = "tokio-codec"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4602
checksum = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f"
4603
dependencies = [
4604 4605 4606
 "bytes",
 "futures",
 "tokio-io",
4607 4608 4609 4610 4611 4612
]

[[package]]
name = "tokio-current-thread"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
4613
checksum = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6"
4614
dependencies = [
4615 4616
 "futures",
 "tokio-executor",
4617 4618 4619 4620 4621 4622
]

[[package]]
name = "tokio-executor"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
4623
checksum = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0"
4624
dependencies = [
4625 4626
 "crossbeam-utils 0.6.5",
 "futures",
4627 4628 4629 4630 4631 4632
]

[[package]]
name = "tokio-fs"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
4633
checksum = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d"
4634
dependencies = [
4635 4636 4637
 "futures",
 "tokio-io",
 "tokio-threadpool",
4638 4639 4640 4641 4642 4643
]

[[package]]
name = "tokio-io"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
4644
checksum = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f"
4645
dependencies = [
4646 4647 4648
 "bytes",
 "futures",
 "log",
4649 4650
]

4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663
[[package]]
name = "tokio-named-pipes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d282d483052288b2308ba5ee795f5673b159c9bdf63c385a05609da782a5eae"
dependencies = [
 "bytes",
 "futures",
 "mio",
 "mio-named-pipes",
 "tokio",
]

4664 4665 4666 4667
[[package]]
name = "tokio-process"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
4668
checksum = "88e1281e412013f1ff5787def044a9577a0bed059f451e835f1643201f8b777d"
4669
dependencies = [
4670 4671 4672 4673 4674 4675 4676 4677
 "futures",
 "libc",
 "mio",
 "mio-named-pipes",
 "tokio-io",
 "tokio-reactor",
 "tokio-signal",
 "winapi 0.3.6",
4678 4679 4680 4681 4682 4683
]

[[package]]
name = "tokio-reactor"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
4684
checksum = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f"
4685
dependencies = [
4686 4687 4688 4689 4690 4691
 "crossbeam-utils 0.6.5",
 "futures",
 "lazy_static 1.3.0",
 "log",
 "mio",
 "num_cpus",
4692
 "parking_lot 0.7.1",
4693 4694 4695
 "slab",
 "tokio-executor",
 "tokio-io",
4696 4697
]

4698 4699 4700 4701 4702 4703 4704 4705 4706
[[package]]
name = "tokio-service"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162"
dependencies = [
 "futures",
]

4707 4708 4709 4710
[[package]]
name = "tokio-signal"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
4711
checksum = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296"
4712
dependencies = [
4713 4714 4715 4716 4717 4718 4719 4720 4721
 "futures",
 "libc",
 "mio",
 "mio-uds",
 "signal-hook",
 "tokio-executor",
 "tokio-io",
 "tokio-reactor",
 "winapi 0.3.6",
4722 4723 4724 4725 4726 4727
]

[[package]]
name = "tokio-tcp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
4728
checksum = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119"
4729
dependencies = [
4730 4731 4732 4733 4734 4735
 "bytes",
 "futures",
 "iovec",
 "mio",
 "tokio-io",
 "tokio-reactor",
4736 4737 4738 4739 4740 4741
]

[[package]]
name = "tokio-threadpool"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
4742
checksum = "17465013014410310f9f61fa10bf4724803c149ea1d51efece131c38efca93aa"
4743
dependencies = [
4744 4745 4746 4747 4748 4749 4750 4751
 "crossbeam-channel",
 "crossbeam-deque 0.6.3",
 "crossbeam-utils 0.6.5",
 "futures",
 "log",
 "num_cpus",
 "rand 0.6.1",
 "tokio-executor",
4752 4753 4754 4755 4756 4757
]

[[package]]
name = "tokio-timer"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
4758
checksum = "4f37f0111d76cc5da132fe9bc0590b9b9cfd079bc7e75ac3846278430a299ff8"
4759
dependencies = [
4760 4761 4762 4763
 "crossbeam-utils 0.6.5",
 "futures",
 "slab",
 "tokio-executor",
4764 4765 4766 4767 4768 4769
]

[[package]]
name = "tokio-udp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
4770
checksum = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92"
4771
dependencies = [
4772 4773 4774 4775 4776 4777 4778
 "bytes",
 "futures",
 "log",
 "mio",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
4779 4780 4781 4782 4783 4784
]

[[package]]
name = "tokio-uds"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
4785
checksum = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445"
4786
dependencies = [
4787 4788 4789 4790 4791 4792 4793 4794 4795 4796
 "bytes",
 "futures",
 "iovec",
 "libc",
 "log",
 "mio",
 "mio-uds",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
4797 4798
]

E
Eric Huss 已提交
4799 4800
[[package]]
name = "toml"
F
flip1995 已提交
4801
version = "0.5.3"
E
Eric Huss 已提交
4802
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
4803
checksum = "c7aabe75941d914b72bf3e5d3932ed92ce0664d49d8432305a8b547c37227724"
E
Eric Huss 已提交
4804
dependencies = [
4805
 "serde",
E
Eric Huss 已提交
4806 4807
]

4808 4809
[[package]]
name = "toml-query"
E
Eric Huss 已提交
4810
version = "0.9.0"
4811
source = "registry+https://github.com/rust-lang/crates.io-index"
4812
checksum = "a24369a1894ac8224efcfd567c3d141aea360292f49888e7ec7dcc316527aebb"
4813
dependencies = [
4814 4815 4816 4817 4818
 "failure",
 "failure_derive",
 "is-match",
 "lazy_static 1.3.0",
 "regex",
E
Eric Huss 已提交
4819
 "toml",
4820
 "toml-query_derive",
E
Eric Huss 已提交
4821 4822 4823 4824 4825 4826
]

[[package]]
name = "toml-query_derive"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4827
checksum = "3c99ca245ec273c7e75c8ee58f47b882d0146f3c2c8495158082c6671e8b5335"
E
Eric Huss 已提交
4828
dependencies = [
4829
 "darling",
4830 4831
 "quote 0.6.12",
 "syn 0.15.35",
4832 4833
]

4834 4835 4836 4837
[[package]]
name = "try-lock"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4838
checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
4839

E
Eric Huss 已提交
4840 4841 4842 4843
[[package]]
name = "typenum"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4844
checksum = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
E
Eric Huss 已提交
4845

4846 4847 4848 4849
[[package]]
name = "ucd-trie"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4850
checksum = "71a9c5b1fe77426cf144cc30e49e955270f5086e31a6441dfa8b32efc09b9d77"
4851

A
Alex Crichton 已提交
4852 4853
[[package]]
name = "ucd-util"
4854
version = "0.1.3"
A
Alex Crichton 已提交
4855
source = "registry+https://github.com/rust-lang/crates.io-index"
4856
checksum = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
A
Alex Crichton 已提交
4857

4858 4859 4860 4861
[[package]]
name = "unicase"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4862
checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
4863
dependencies = [
4864
 "version_check",
4865 4866
]

4867 4868
[[package]]
name = "unicase"
L
Lzu Tao 已提交
4869
version = "2.5.1"
4870
source = "registry+https://github.com/rust-lang/crates.io-index"
L
Lzu Tao 已提交
4871
checksum = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150"
4872
dependencies = [
4873
 "version_check",
4874 4875
]

4876 4877
[[package]]
name = "unicode-bidi"
S
steveklabnik 已提交
4878
version = "0.3.4"
S
Steve Klabnik 已提交
4879
source = "registry+https://github.com/rust-lang/crates.io-index"
4880
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
S
Steve Klabnik 已提交
4881
dependencies = [
4882
 "matches",
4883 4884
]

4885 4886
[[package]]
name = "unicode-normalization"
A
Alex Crichton 已提交
4887
version = "0.1.7"
4888
source = "registry+https://github.com/rust-lang/crates.io-index"
4889
checksum = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25"
4890 4891 4892

[[package]]
name = "unicode-segmentation"
A
Alex Crichton 已提交
4893
version = "1.2.1"
4894
source = "registry+https://github.com/rust-lang/crates.io-index"
4895
checksum = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1"
4896 4897 4898

[[package]]
name = "unicode-width"
4899
version = "0.1.6"
4900
source = "registry+https://github.com/rust-lang/crates.io-index"
4901 4902 4903 4904 4905 4906
checksum = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20"
dependencies = [
 "compiler_builtins",
 "rustc-std-workspace-core",
 "rustc-std-workspace-std",
]
4907

A
Alex Crichton 已提交
4908 4909 4910 4911
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4912
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
A
Alex Crichton 已提交
4913

4914 4915 4916 4917 4918 4919
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"

F
flip1995 已提交
4920 4921 4922 4923
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4924
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
F
flip1995 已提交
4925

4926 4927 4928 4929
[[package]]
name = "unstable-book-gen"
version = "0.1.0"
dependencies = [
4930 4931
 "num-traits",
 "tidy",
4932 4933
]

N
Nick Cameron 已提交
4934 4935 4936 4937
[[package]]
name = "unwind"
version = "0.0.0"
dependencies = [
4938 4939 4940 4941 4942
 "cc",
 "cfg-if",
 "compiler_builtins",
 "core",
 "libc",
N
Nick Cameron 已提交
4943 4944
]

4945 4946
[[package]]
name = "url"
4947
version = "1.7.2"
4948
source = "registry+https://github.com/rust-lang/crates.io-index"
4949
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
4950
dependencies = [
4951 4952 4953
 "idna 0.1.5",
 "matches",
 "percent-encoding 1.0.1",
4954 4955
]

E
Eric Huss 已提交
4956 4957
[[package]]
name = "url"
F
flip1995 已提交
4958
version = "2.1.0"
E
Eric Huss 已提交
4959
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
4960
checksum = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61"
E
Eric Huss 已提交
4961
dependencies = [
4962 4963 4964 4965
 "idna 0.2.0",
 "matches",
 "percent-encoding 2.0.0",
 "serde",
E
Eric Huss 已提交
4966 4967
]

S
steveklabnik 已提交
4968 4969 4970 4971
[[package]]
name = "utf-8"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4972
checksum = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c"
S
steveklabnik 已提交
4973

4974 4975
[[package]]
name = "utf8-ranges"
4976
version = "1.0.2"
4977
source = "registry+https://github.com/rust-lang/crates.io-index"
4978
checksum = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
4979

E
Eric Huss 已提交
4980 4981 4982 4983
[[package]]
name = "utf8parse"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4984
checksum = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d"
E
Eric Huss 已提交
4985

4986 4987 4988 4989
[[package]]
name = "uuid"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
4990
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
4991
dependencies = [
4992
 "rand 0.6.1",
4993 4994
]

4995 4996
[[package]]
name = "vcpkg"
A
Alex Crichton 已提交
4997
version = "0.2.6"
4998
source = "registry+https://github.com/rust-lang/crates.io-index"
4999
checksum = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d"
5000

5001 5002
[[package]]
name = "vec_map"
A
Alex Crichton 已提交
5003
version = "0.8.1"
5004
source = "registry+https://github.com/rust-lang/crates.io-index"
5005
checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
5006

R
Ralf Jung 已提交
5007 5008
[[package]]
name = "vergen"
R
Ralf Jung 已提交
5009
version = "3.0.4"
R
Ralf Jung 已提交
5010
source = "registry+https://github.com/rust-lang/crates.io-index"
5011
checksum = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba"
R
Ralf Jung 已提交
5012
dependencies = [
5013 5014 5015
 "bitflags",
 "chrono",
 "failure",
R
Ralf Jung 已提交
5016 5017
]

5018 5019 5020 5021
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
5022
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
5023

E
Eric Huss 已提交
5024 5025 5026 5027
[[package]]
name = "vte"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
5028
checksum = "4f42f536e22f7fcbb407639765c8fd78707a33109301f834a594758bedd6e8cf"
E
Eric Huss 已提交
5029
dependencies = [
5030
 "utf8parse",
E
Eric Huss 已提交
5031 5032
]

5033 5034
[[package]]
name = "walkdir"
5035
version = "2.2.7"
5036
source = "registry+https://github.com/rust-lang/crates.io-index"
5037
checksum = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1"
5038
dependencies = [
5039 5040 5041
 "same-file",
 "winapi 0.3.6",
 "winapi-util",
5042 5043
]

5044 5045 5046 5047
[[package]]
name = "want"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5048
checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
5049
dependencies = [
5050 5051 5052
 "futures",
 "log",
 "try-lock",
5053 5054
]

N
newpavlov 已提交
5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065
[[package]]
name = "wasi"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d"
dependencies = [
 "compiler_builtins",
 "rustc-std-workspace-alloc",
 "rustc-std-workspace-core",
]

5066 5067 5068 5069
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
5070
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
5071

5072 5073
[[package]]
name = "winapi"
5074
version = "0.3.6"
5075
source = "registry+https://github.com/rust-lang/crates.io-index"
5076
checksum = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
5077
dependencies = [
5078 5079
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
5080 5081
]

5082 5083 5084 5085
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5086
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
5087

5088 5089 5090 5091
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5092
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
5093

A
Alex Crichton 已提交
5094 5095
[[package]]
name = "winapi-util"
E
Eric Huss 已提交
5096
version = "0.1.2"
A
Alex Crichton 已提交
5097
source = "registry+https://github.com/rust-lang/crates.io-index"
5098
checksum = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
A
Alex Crichton 已提交
5099
dependencies = [
5100
 "winapi 0.3.6",
A
Alex Crichton 已提交
5101 5102
]

5103 5104 5105 5106
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5107
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
5108

5109 5110
[[package]]
name = "wincolor"
A
Alex Crichton 已提交
5111
version = "1.0.1"
5112
source = "registry+https://github.com/rust-lang/crates.io-index"
5113
checksum = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
5114
dependencies = [
5115 5116
 "winapi 0.3.6",
 "winapi-util",
5117 5118
]

5119 5120 5121 5122
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5123
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
5124
dependencies = [
5125 5126
 "winapi 0.2.8",
 "winapi-build",
5127 5128
]

5129 5130
[[package]]
name = "xattr"
A
Alex Crichton 已提交
5131
version = "0.2.2"
5132
source = "registry+https://github.com/rust-lang/crates.io-index"
5133
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
5134
dependencies = [
5135
 "libc",
5136 5137 5138 5139
]

[[package]]
name = "xz2"
A
Alex Crichton 已提交
5140
version = "0.1.5"
5141
source = "registry+https://github.com/rust-lang/crates.io-index"
5142
checksum = "df8bf41d3030c3577c9458fd6640a05afbf43b150d0b531b16bd77d3f794f27a"
5143
dependencies = [
5144
 "lzma-sys",
5145 5146 5147 5148 5149 5150
]

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