summary refs log tree commit diff
path: root/src/rustc/Cargo.toml
blob: d185c061d5bd9fb6656b7240de820824447d2137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
authors = ["The Rust Project Developers"]
name = "rustc-main"
version = "0.0.0"

[[bin]]
name = "rustc"
path = "rustc.rs"

# All optional dependencies so the features passed to this Cargo.toml select
# what should actually be built.
[dependencies]
rustc_back = { path = "../librustc_back" }
rustc_driver = { path = "../librustc_driver" }

[features]
jemalloc = ["rustc_back/jemalloc"]
llvm = ["rustc_driver/llvm"]