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