]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/Cargo.toml
Rollup merge of #88780 - orlp:int-abs-diff, r=m-ou-se
[rust.git] / src / bootstrap / Cargo.toml
1 [package]
2 name = "bootstrap"
3 version = "0.0.0"
4 edition = "2021"
5 build = "build.rs"
6
7 [lib]
8 path = "lib.rs"
9 doctest = false
10
11 [[bin]]
12 name = "bootstrap"
13 path = "bin/main.rs"
14 test = false
15
16 [[bin]]
17 name = "rustc"
18 path = "bin/rustc.rs"
19 test = false
20
21 [[bin]]
22 name = "rustdoc"
23 path = "bin/rustdoc.rs"
24 test = false
25
26 [[bin]]
27 name = "sccache-plus-cl"
28 path = "bin/sccache-plus-cl.rs"
29 test = false
30
31 [[bin]]
32 name = "llvm-config-wrapper"
33 path = "bin/llvm-config-wrapper.rs"
34 test = false
35
36 [dependencies]
37 build_helper = { path = "../build_helper" }
38 cmake = "0.1.38"
39 filetime = "0.2"
40 num_cpus = "1.0"
41 getopts = "0.2.19"
42 cc = "1.0.69"
43 libc = "0.2"
44 serde = { version = "1.0.8", features = ["derive"] }
45 serde_json = "1.0.2"
46 toml = "0.5"
47 lazy_static = "1.3.0"
48 time = "0.1"
49 ignore = "0.4.10"
50 opener = "0.5"
51 merge = "0.1.0"
52 once_cell = "1.7.2"
53
54 [target.'cfg(windows)'.dependencies.winapi]
55 version = "0.3"
56 features = ["fileapi", "ioapiset", "jobapi2", "handleapi", "winioctl", "psapi", "impl-default"]
57
58 [dev-dependencies]
59 pretty_assertions = "0.6"