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
|
|
|
|
|
|
|
[dependencies]
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_driver = { path = "../rustc_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.
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
2018-11-19 17:28:44 +00:00
|
|
|
|
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']
|
2020-09-11 16:37:51 +00:00
|
|
|
max_level_info = ['rustc_driver/max_level_info']
|