16 lines
285 B
TOML
16 lines
285 B
TOML
![]() |
[package]
|
||
|
authors = ["The Rust Project Developers"]
|
||
|
name = "rustc-main"
|
||
|
version = "0.0.0"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "rustc"
|
||
|
path = "rustc.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
rustc_back = { path = "../librustc_back" }
|
||
|
rustc_driver = { path = "../librustc_driver" }
|
||
|
|
||
|
[features]
|
||
|
jemalloc = ["rustc_back/jemalloc"]
|