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