]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/Cargo.toml
Rollup merge of #93899 - ssomers:vecdeque_naming, r=m-ou-se
[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.10"
13 tracing = "0.1"
14 libc = "0.2.50"
15 jobserver = "0.1.22"
16 tempfile = "3.2"
17 thorin-dwp = "0.2"
18 pathdiff = "0.2.0"
19 snap = "1"
20 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
21 regex = "1.4"
22
23 rustc_serialize = { path = "../rustc_serialize" }
24 rustc_arena = { path = "../rustc_arena" }
25 rustc_ast = { path = "../rustc_ast" }
26 rustc_span = { path = "../rustc_span" }
27 rustc_middle = { path = "../rustc_middle" }
28 rustc_apfloat = { path = "../rustc_apfloat" }
29 rustc_attr = { path = "../rustc_attr" }
30 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
31 rustc_data_structures = { path = "../rustc_data_structures" }
32 rustc_errors = { path = "../rustc_errors" }
33 rustc_fs_util = { path = "../rustc_fs_util" }
34 rustc_hir = { path = "../rustc_hir" }
35 rustc_incremental = { path = "../rustc_incremental" }
36 rustc_index = { path = "../rustc_index" }
37 rustc_macros = { path = "../rustc_macros" }
38 rustc_metadata = { path = "../rustc_metadata" }
39 rustc_query_system = { path = "../rustc_query_system" }
40 rustc_target = { path = "../rustc_target" }
41 rustc_session = { path = "../rustc_session" }
42
43 [dependencies.object]
44 version = "0.28.0"
45 default-features = false
46 features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]