2015-11-19 15:20:12 -08:00
|
|
|
[package]
|
|
|
|
name = "rustc-main"
|
|
|
|
version = "0.0.0"
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2015-11-19 15:20:12 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_driver = { path = "../rustc_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.
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
2018-11-19 18:28:44 +01:00
|
|
|
|
2021-04-04 14:07:56 -07:00
|
|
|
[dependencies.tikv-jemalloc-sys]
|
|
|
|
version = '0.4.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]
|
2022-01-28 16:56:05 +01:00
|
|
|
jemalloc = ['tikv-jemalloc-sys']
|
2019-10-22 08:51:35 -07:00
|
|
|
llvm = ['rustc_driver/llvm']
|
2020-09-11 09:37:51 -07:00
|
|
|
max_level_info = ['rustc_driver/max_level_info']
|