]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/Cargo.toml
Auto merge of #43651 - petrochenkov:foreign-life, r=eddyb
[rust.git] / src / librustc_trans / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_trans"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_trans"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 num_cpus = "1.0"
14 flate2 = "0.2"
15 jobserver = "0.1.5"
16 log = "0.3"
17 owning_ref = "0.3.3"
18 rustc-demangle = "0.1.4"
19 rustc = { path = "../librustc" }
20 rustc_allocator = { path = "../librustc_allocator" }
21 rustc_back = { path = "../librustc_back" }
22 rustc_bitflags = { path = "../librustc_bitflags" }
23 rustc_const_math = { path = "../librustc_const_math" }
24 rustc_data_structures = { path = "../librustc_data_structures" }
25 rustc_errors = { path = "../librustc_errors" }
26 rustc_incremental = { path = "../librustc_incremental" }
27 rustc_llvm = { path = "../librustc_llvm" }
28 rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
29 rustc_trans_utils = { path = "../librustc_trans_utils" }
30 serialize = { path = "../libserialize" }
31 syntax = { path = "../libsyntax" }
32 syntax_pos = { path = "../libsyntax_pos" }
33
34 [target."cfg(windows)".dependencies]
35 gcc = "0.3.50"