rust/src/bootstrap/Cargo.toml

60 lines
1.0 KiB
TOML
Raw Permalink Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "bootstrap"
version = "0.0.0"
2018-12-07 13:21:05 +01:00
edition = "2018"
build = "build.rs"
[lib]
path = "lib.rs"
doctest = false
[[bin]]
name = "bootstrap"
path = "bin/main.rs"
test = false
[[bin]]
name = "rustc"
path = "bin/rustc.rs"
test = false
[[bin]]
name = "rustdoc"
path = "bin/rustdoc.rs"
test = false
[[bin]]
name = "sccache-plus-cl"
path = "bin/sccache-plus-cl.rs"
test = false
[[bin]]
name = "llvm-config-wrapper"
path = "bin/llvm-config-wrapper.rs"
test = false
[dependencies]
build_helper = { path = "../build_helper" }
cmake = "0.1.38"
2018-07-06 22:52:40 +02:00
filetime = "0.2"
num_cpus = "1.0"
2019-05-02 11:32:56 +02:00
getopts = "0.2.19"
cc = "1.0.35"
libc = "0.2"
serde = { version = "1.0.8", features = ["derive"] }
2017-07-04 18:03:01 +02:00
serde_json = "1.0.2"
toml = "0.5"
lazy_static = "1.3.0"
time = "0.1"
ignore = "0.4.10"
opener = "0.4"
merge = "0.1.0"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["fileapi", "ioapiset", "jobapi2", "handleapi", "winioctl", "psapi", "impl-default"]
[dev-dependencies]
pretty_assertions = "0.6"