]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/Cargo.toml
Rollup merge of #60513 - chrisvittal:remove-borrowck-compare, r=matthewjasper
[rust.git] / src / bootstrap / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "bootstrap"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "bootstrap"
9 path = "lib.rs"
10 doctest = false
11
12 [[bin]]
13 name = "bootstrap"
14 path = "bin/main.rs"
15 test = false
16
17 [[bin]]
18 name = "rustc"
19 path = "bin/rustc.rs"
20 test = false
21
22 [[bin]]
23 name = "rustdoc"
24 path = "bin/rustdoc.rs"
25 test = false
26
27 [[bin]]
28 name = "sccache-plus-cl"
29 path = "bin/sccache-plus-cl.rs"
30 test = false
31
32 [[bin]]
33 name = "llvm-config-wrapper"
34 path = "bin/llvm-config-wrapper.rs"
35 test = false
36
37 [dependencies]
38 build_helper = { path = "../build_helper" }
39 cmake = "0.1.38"
40 filetime = "0.2"
41 num_cpus = "1.0"
42 getopts = "0.2.18"
43 cc = "1.0.35"
44 libc = "0.2"
45 serde = "1.0.8"
46 serde_derive = "1.0.8"
47 serde_json = "1.0.2"
48 toml = "0.4"
49 lazy_static = "0.2"
50 time = "0.1"
51 petgraph = "0.4.13"
52
53 [dev-dependencies]
54 pretty_assertions = "0.5"