]> git.proxmox.com Git - rustc.git/blame - src/bootstrap/Cargo.toml
New upstream version 1.55.0+dfsg1
[rustc.git] / src / bootstrap / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "bootstrap"
4version = "0.0.0"
0731742a 5edition = "2018"
1b1a35ee 6build = "build.rs"
7453a54e
SL
7
8[lib]
7453a54e 9path = "lib.rs"
32a655c1 10doctest = false
7453a54e
SL
11
12[[bin]]
13name = "bootstrap"
5bcae85e 14path = "bin/main.rs"
32a655c1 15test = false
7453a54e
SL
16
17[[bin]]
18name = "rustc"
5bcae85e 19path = "bin/rustc.rs"
32a655c1 20test = false
7453a54e 21
54a0048b
SL
22[[bin]]
23name = "rustdoc"
5bcae85e 24path = "bin/rustdoc.rs"
32a655c1 25test = false
54a0048b 26
7cac9316
XL
27[[bin]]
28name = "sccache-plus-cl"
29path = "bin/sccache-plus-cl.rs"
30test = false
31
94b46f34
XL
32[[bin]]
33name = "llvm-config-wrapper"
34path = "bin/llvm-config-wrapper.rs"
35test = false
36
7453a54e
SL
37[dependencies]
38build_helper = { path = "../build_helper" }
48663c56 39cmake = "0.1.38"
8faf50e0 40filetime = "0.2"
7cac9316 41num_cpus = "1.0"
48663c56 42getopts = "0.2.19"
136023e0 43cc = "1.0.69"
7453a54e 44libc = "0.2"
48663c56 45serde = { version = "1.0.8", features = ["derive"] }
b7449926 46serde_json = "1.0.2"
e1599b0c 47toml = "0.5"
48663c56 48lazy_static = "1.3.0"
ff7c6d11 49time = "0.1"
dfeec247 50ignore = "0.4.10"
136023e0 51opener = "0.5"
1b1a35ee 52merge = "0.1.0"
136023e0 53once_cell = "1.7.2"
dfeec247
XL
54
55[target.'cfg(windows)'.dependencies.winapi]
56version = "0.3"
6a06907d 57features = ["fileapi", "ioapiset", "jobapi2", "handleapi", "winioctl", "psapi", "impl-default"]
83c7162d
XL
58
59[dev-dependencies]
ba9703b0 60pretty_assertions = "0.6"