]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/Cargo.toml
Re-use std::sealed::Sealed in os/linux/process.
[rust.git] / compiler / rustc_codegen_ssa / Cargo.toml
1 [package]
2 name = "rustc_codegen_ssa"
3 version = "0.0.0"
4 edition = "2018"
5
6 [lib]
7 test = false
8
9 [dependencies]
10 bitflags = "1.2.1"
11 cc = "1.0.69"
12 itertools = "0.9"
13 tracing = "0.1"
14 libc = "0.2.50"
15 jobserver = "0.1.22"
16 tempfile = "3.2"
17 pathdiff = "0.2.0"
18 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
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.25.2"
39 default-features = false
40 features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]