2015-11-19 17:20:12 -06:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc-main"
|
|
|
|
version = "0.0.0"
|
2019-01-02 15:23:45 -06:00
|
|
|
edition = '2018'
|
2015-11-19 17:20:12 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_driver = { path = "../rustc_driver" }
|
2018-10-20 21:15:06 -05:00
|
|
|
|
2018-11-19 11:28:44 -06: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.
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
2018-11-19 11:28:44 -06:00
|
|
|
|
2021-04-04 16:07:56 -05:00
|
|
|
[dependencies.tikv-jemalloc-sys]
|
|
|
|
version = '0.4.0'
|
2018-12-19 10:27:23 -06:00
|
|
|
optional = true
|
|
|
|
features = ['unprefixed_malloc_on_supported_platforms']
|
|
|
|
|
2021-04-04 16:07:56 -05:00
|
|
|
[dependencies.tikv-jemallocator]
|
|
|
|
version = '0.4.0'
|
|
|
|
optional = true
|
|
|
|
|
2018-10-20 21:15:06 -05:00
|
|
|
[features]
|
2021-04-04 16:07:56 -05:00
|
|
|
jemalloc = ['tikv-jemalloc-sys', 'tikv-jemallocator']
|
2019-10-22 10:51:35 -05:00
|
|
|
llvm = ['rustc_driver/llvm']
|
2020-09-11 11:37:51 -05:00
|
|
|
max_level_info = ['rustc_driver/max_level_info']
|