2015-11-19 23:20:12 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc-main"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[[bin]]
|
2018-05-12 03:30:02 +00:00
|
|
|
name = "rustc_binary"
|
2015-11-19 23:20:12 +00:00
|
|
|
path = "rustc.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2017-12-08 19:18:21 +00:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
2015-11-19 23:20:12 +00:00
|
|
|
rustc_driver = { path = "../librustc_driver" }
|
2018-10-21 02:15:06 +00:00
|
|
|
|
2018-11-19 17:28:44 +00:00
|
|
|
# Make sure rustc_codegen_ssa ends up in the sysroot, because this
|
|
|
|
# crate is intended to be used by codegen backends, which may not be in-tree.
|
|
|
|
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
|
|
|
|
|
2018-10-21 02:15:06 +00:00
|
|
|
[features]
|
|
|
|
jemalloc = ['rustc_driver/jemalloc-sys']
|