blob: bbc4c2ee43e079dd9cb0f2900aaf68e586c6d5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[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"]
|