]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/Cargo.toml
Auto merge of #94601 - csmoe:android-asan, r=nagisa
[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 cmake = "0.1.38"
38 filetime = "0.2"
39 getopts = "0.2.19"
40 cc = "1.0.69"
41 libc = "0.2"
42 serde = { version = "1.0.8", features = ["derive"] }
43 serde_json = "1.0.2"
44 toml = "0.5"
45 ignore = "0.4.10"
46 opener = "0.5"
47 once_cell = "1.7.2"
48
49 [target.'cfg(windows)'.dependencies.winapi]
50 version = "0.3"
51 features = [
52     "fileapi",
53     "ioapiset",
54     "jobapi2",
55     "handleapi",
56     "winioctl",
57     "psapi",
58     "impl-default",
59     "timezoneapi",
60 ]
61
62 [dev-dependencies]
63 pretty_assertions = "0.7"