]> git.lizzy.rs Git - rust.git/blob - compiler/rustc/Cargo.toml
Auto merge of #97081 - oli-obk:outlives_query_fast_path, r=jackh726
[rust.git] / compiler / rustc / Cargo.toml
1 [package]
2 name = "rustc-main"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 rustc_driver = { path = "../rustc_driver" }
8
9 # Make sure rustc_codegen_ssa ends up in the sysroot, because this
10 # crate is intended to be used by codegen backends, which may not be in-tree.
11 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
12
13 [dependencies.jemalloc-sys]
14 version = "0.5.0"
15 optional = true
16 features = ['unprefixed_malloc_on_supported_platforms']
17
18 [features]
19 jemalloc = ['jemalloc-sys']
20 llvm = ['rustc_driver/llvm']
21 max_level_info = ['rustc_driver/max_level_info']
22 rustc_use_parallel_compiler = ['rustc_driver/rustc_use_parallel_compiler']