]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_ssa/Cargo.toml
Auto merge of #68530 - estebank:abolish-ice, r=petrochenkov
[rust.git] / src / librustc_codegen_ssa / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_codegen_ssa"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_codegen_ssa"
9 path = "lib.rs"
10 test = false
11
12 [dependencies]
13 bitflags = "1.2.1"
14 cc = "1.0.1"
15 num_cpus = "1.0"
16 memmap = "0.7"
17 log = "0.4.5"
18 libc = "0.2.44"
19 jobserver = "0.1.11"
20 tempfile = "3.1"
21
22 rustc_serialize = { path = "../libserialize", package = "serialize" }
23 syntax = { path = "../libsyntax" }
24 rustc_span = { path = "../librustc_span" }
25 rustc = { path = "../librustc" }
26 rustc_apfloat = { path = "../librustc_apfloat" }
27 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
28 rustc_data_structures = { path = "../librustc_data_structures"}
29 rustc_errors = { path = "../librustc_errors" }
30 rustc_fs_util = { path = "../librustc_fs_util" }
31 rustc_hir = { path = "../librustc_hir" }
32 rustc_incremental = { path = "../librustc_incremental" }
33 rustc_index = { path = "../librustc_index" }
34 rustc_target = { path = "../librustc_target" }
35 rustc_session = { path = "../librustc_session" }