]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/Cargo.toml
Merge commit '4a053f206fd6799a25823c307f7d7f9d897be118' into sync-rustfmt-subtree
[rust.git] / compiler / rustc_codegen_ssa / Cargo.toml
1 [package]
2 name = "rustc_codegen_ssa"
3 version = "0.0.0"
4 edition = "2021"
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 snap = "1"
19 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
20 regex = "1.4"
21
22 rustc_serialize = { path = "../rustc_serialize" }
23 rustc_ast = { path = "../rustc_ast" }
24 rustc_span = { path = "../rustc_span" }
25 rustc_middle = { path = "../rustc_middle" }
26 rustc_apfloat = { path = "../rustc_apfloat" }
27 rustc_attr = { path = "../rustc_attr" }
28 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
29 rustc_data_structures = { path = "../rustc_data_structures" }
30 rustc_errors = { path = "../rustc_errors" }
31 rustc_fs_util = { path = "../rustc_fs_util" }
32 rustc_hir = { path = "../rustc_hir" }
33 rustc_incremental = { path = "../rustc_incremental" }
34 rustc_index = { path = "../rustc_index" }
35 rustc_macros = { path = "../rustc_macros" }
36 rustc_metadata = { path = "../rustc_metadata" }
37 rustc_query_system = { path = "../rustc_query_system" }
38 rustc_target = { path = "../rustc_target" }
39 rustc_session = { path = "../rustc_session" }
40
41 [dependencies.object]
42 version = "0.26.2"
43 default-features = false
44 features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]