]> git.lizzy.rs Git - rust.git/blob - src/rustc/Cargo.toml
Rollup merge of #61389 - Zoxc:arena-cleanup, r=eddyb
[rust.git] / src / rustc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc-main"
4 version = "0.0.0"
5 edition = '2018'
6
7 [[bin]]
8 name = "rustc_binary"
9 path = "rustc.rs"
10
11 [dependencies]
12 rustc_target = { path = "../librustc_target" }
13 rustc_driver = { path = "../librustc_driver" }
14
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.
17 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
18
19 [dependencies.jemalloc-sys]
20 version = '0.3.0'
21 optional = true
22 features = ['unprefixed_malloc_on_supported_platforms']
23
24 [features]
25 jemalloc = ['jemalloc-sys']