]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/Cargo.toml
Rollup merge of #93418 - ojeda:no-shortcut, r=camelid
[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 ignore = "0.4.10"
48 opener = "0.5"
49 once_cell = "1.7.2"
50
51 [target.'cfg(windows)'.dependencies.winapi]
52 version = "0.3"
53 features = [
54     "fileapi",
55     "ioapiset",
56     "jobapi2",
57     "handleapi",
58     "winioctl",
59     "psapi",
60     "impl-default",
61     "timezoneapi",
62 ]
63
64 [dev-dependencies]
65 pretty_assertions = "0.7"