]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/Cargo.toml
Auto merge of #85382 - Aaron1011:project-eval, r=nikomatsakis
[rust.git] / compiler / rustc_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 test = false
9
10 [dependencies]
11 bitflags = "1.2.1"
12 cc = "1.0.67"
13 itertools = "0.9"
14 tracing = "0.1"
15 libc = "0.2.50"
16 jobserver = "0.1.22"
17 tempfile = "3.2"
18 pathdiff = "0.2.0"
19
20 rustc_serialize = { path = "../rustc_serialize" }
21 rustc_ast = { path = "../rustc_ast" }
22 rustc_span = { path = "../rustc_span" }
23 rustc_middle = { path = "../rustc_middle" }
24 rustc_apfloat = { path = "../rustc_apfloat" }
25 rustc_attr = { path = "../rustc_attr" }
26 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
27 rustc_data_structures = { path = "../rustc_data_structures"}
28 rustc_errors = { path = "../rustc_errors" }
29 rustc_fs_util = { path = "../rustc_fs_util" }
30 rustc_hir = { path = "../rustc_hir" }
31 rustc_incremental = { path = "../rustc_incremental" }
32 rustc_index = { path = "../rustc_index" }
33 rustc_macros = { path = "../rustc_macros" }
34 rustc_target = { path = "../rustc_target" }
35 rustc_session = { path = "../rustc_session" }
36
37 [dependencies.object]
38 version = "0.22.0"
39 default-features = false
40 features = ["read_core", "elf", "macho", "pe", "unaligned", "archive"]