]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/Cargo.toml
Rollup merge of #61389 - Zoxc:arena-cleanup, r=eddyb
[rust.git] / src / librustc_codegen_llvm / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_codegen_llvm"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_codegen_llvm"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11 test = false
12
13 [dependencies]
14 cc = "1.0.1" # Used to locate MSVC
15 num_cpus = "1.0"
16 rustc-demangle = "0.1.15"
17 rustc_llvm = { path = "../librustc_llvm" }
18 memmap = "0.6"
19
20 [features]
21 # This is used to convince Cargo to separately cache builds of `rustc_codegen_llvm`
22 # when this option is enabled or not. That way we can build two, cache two
23 # artifacts, and have nice speedy rebuilds.
24 emscripten = ["rustc_llvm/emscripten"]