]> git.proxmox.com Git - rustc.git/blame - src/bootstrap/Cargo.toml
New upstream version 1.44.1+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"
7453a54e
SL
6
7[lib]
8name = "bootstrap"
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
XL
42getopts = "0.2.19"
43cc = "1.0.35"
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
XL
50ignore = "0.4.10"
51
52[target.'cfg(windows)'.dependencies.winapi]
53version = "0.3"
54features = ["fileapi", "ioapiset", "jobapi2", "handleapi", "winioctl"]
83c7162d
XL
55
56[dev-dependencies]
ba9703b0 57pretty_assertions = "0.6"