]> git.proxmox.com Git - rustc.git/blame - src/rustc/Cargo.toml
New upstream version 1.41.1+dfsg1
[rustc.git] / src / rustc / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc-main"
4version = "0.0.0"
0731742a 5edition = '2018'
7453a54e
SL
6
7[[bin]]
94b46f34 8name = "rustc_binary"
7453a54e
SL
9path = "rustc.rs"
10
7453a54e 11[dependencies]
83c7162d 12rustc_target = { path = "../librustc_target" }
7453a54e 13rustc_driver = { path = "../librustc_driver" }
7453a54e 14
a1dfa0c6
XL
15# Make sure rustc_codegen_ssa ends up in the sysroot, because this
16# crate is intended to be used by codegen backends, which may not be in-tree.
17rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
18
0731742a 19[dependencies.jemalloc-sys]
532ac7d7 20version = '0.3.0'
0731742a
XL
21optional = true
22features = ['unprefixed_malloc_on_supported_platforms']
23
7453a54e 24[features]
0731742a 25jemalloc = ['jemalloc-sys']
60c5eb7d 26llvm = ['rustc_driver/llvm']