]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/Cargo.toml
Rollup merge of #97627 - lcnr:comment-tick, r=Dylan-DPC
[rust.git] / src / bootstrap / Cargo.toml
1 [package]
2 name = "bootstrap"
3 version = "0.0.0"
4 edition = "2021"
5 build = "build.rs"
6 default-run = "bootstrap"
7
8 [lib]
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 cmake = "0.1.38"
39 filetime = "0.2"
40 getopts = "0.2.19"
41 cc = "1.0.69"
42 libc = "0.2"
43 serde = { version = "1.0.8", features = ["derive"] }
44 serde_json = "1.0.2"
45 tar = "0.4"
46 toml = "0.5"
47 ignore = "0.4.10"
48 opener = "0.5"
49 once_cell = "1.7.2"
50 xz2 = "0.1"
51
52 [target.'cfg(windows)'.dependencies.winapi]
53 version = "0.3"
54 features = [
55     "fileapi",
56     "ioapiset",
57     "jobapi2",
58     "handleapi",
59     "winioctl",
60     "psapi",
61     "impl-default",
62     "timezoneapi",
63 ]
64
65 [dev-dependencies]
66 pretty_assertions = "0.7"