2015-11-19 15:20:12 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc-main"
|
|
|
|
version = "0.0.0"
|
2019-01-02 13:23:45 -08:00
|
|
|
edition = '2018'
|
2015-11-19 15:20:12 -08:00
|
|
|
|
|
|
|
[[bin]]
|
2018-05-11 21:30:02 -06:00
|
|
|
name = "rustc_binary"
|
2015-11-19 15:20:12 -08:00
|
|
|
path = "rustc.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rustc_driver = { path = "../librustc_driver" }
|
2018-10-20 19:15:06 -07:00
|
|
|
|
2018-11-19 18:28:44 +01: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-12-19 08:27:23 -08:00
|
|
|
[dependencies.jemalloc-sys]
|
2019-03-26 11:03:19 +01:00
|
|
|
version = '0.3.0'
|
2018-12-19 08:27:23 -08:00
|
|
|
optional = true
|
|
|
|
features = ['unprefixed_malloc_on_supported_platforms']
|
|
|
|
|
2018-10-20 19:15:06 -07:00
|
|
|
[features]
|
2018-12-19 08:27:23 -08:00
|
|
|
jemalloc = ['jemalloc-sys']
|
2019-10-22 08:51:35 -07:00
|
|
|
llvm = ['rustc_driver/llvm']
|