]> git.lizzy.rs Git - rust.git/blob - compiler/rustc/Cargo.toml
Rollup merge of #82881 - Manishearth:crate-root, r=estebank
[rust.git] / compiler / 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 [dependencies]
8 rustc_driver = { path = "../rustc_driver" }
9
10 # Make sure rustc_codegen_ssa ends up in the sysroot, because this
11 # crate is intended to be used by codegen backends, which may not be in-tree.
12 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
13
14 [dependencies.jemalloc-sys]
15 version = '0.3.0'
16 optional = true
17 features = ['unprefixed_malloc_on_supported_platforms']
18
19 [features]
20 jemalloc = ['jemalloc-sys']
21 llvm = ['rustc_driver/llvm']
22 max_level_info = ['rustc_driver/max_level_info']