blob: 9986e0b512a347583c00c783ce090bb3b417a2b0 (
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_target = { path = "../librustc_target" }
rustc_driver = { path = "../librustc_driver" }
[features]
jemalloc = ["rustc_target/jemalloc"]
|