]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_ssa/Cargo.toml
Remove GlobalArenas and use Arena instead
[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 crate-type = ["dylib"]
11 test = false
12
13 [dependencies]
14 bitflags = "1.0.4"
15 cc = "1.0.1"
16 num_cpus = "1.0"
17 rustc-demangle = "0.1.4"
18 memmap = "0.6"
19 log = "0.4.5"
20 libc = "0.2.44"
21 jobserver = "0.1.11"
22 parking_lot = "0.7"
23 tempfile = "3.0.5"
24
25 serialize = { path = "../libserialize" }
26 syntax = { path = "../libsyntax" }
27 syntax_pos = { path = "../libsyntax_pos" }
28 rustc = { path = "../librustc" }
29 rustc_allocator = { path = "../librustc_allocator" }
30 rustc_apfloat = { path = "../librustc_apfloat" }
31 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
32 rustc_data_structures = { path = "../librustc_data_structures"}
33 rustc_errors = { path = "../librustc_errors" }
34 rustc_fs_util = { path = "../librustc_fs_util" }
35 rustc_incremental = { path = "../librustc_incremental" }
36 rustc_mir = { path = "../librustc_mir" }
37 rustc_target = { path = "../librustc_target" }