]> git.proxmox.com Git - rustc.git/blame - src/rustc/Cargo.toml
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / rustc / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc-main"
4version = "0.0.0"
5
6[[bin]]
7name = "rustc"
8path = "rustc.rs"
9
10[[bin]]
11name = "rustdoc"
12path = "rustdoc.rs"
13
7453a54e
SL
14[profile.release]
15opt-level = 2
16
17# These options are controlled from our rustc wrapper script, so turn them off
18# here and have them controlled elsewhere.
19[profile.dev]
20debug = false
21debug-assertions = false
22
23# All optional dependencies so the features passed to this Cargo.toml select
24# what should actually be built.
25[dependencies]
7453a54e
SL
26rustc_back = { path = "../librustc_back" }
27rustc_driver = { path = "../librustc_driver" }
54a0048b 28rustdoc = { path = "../librustdoc" }
7453a54e
SL
29
30[features]
31jemalloc = ["rustc_back/jemalloc"]