]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/Cargo.toml
Auto merge of #102080 - yanchen4791:issue-99824-fix, r=cjgillot
[rust.git] / compiler / rustc_codegen_llvm / Cargo.toml
1 [package]
2 name = "rustc_codegen_llvm"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 test = false
8
9 [dependencies]
10 bitflags = "1.0"
11 cstr = "0.2"
12 libc = "0.2"
13 measureme = "10.0.0"
14 object = { version = "0.29.0", default-features = false, features = ["std", "read_core", "archive", "coff", "elf", "macho", "pe"] }
15 tracing = "0.1"
16 rustc_middle = { path = "../rustc_middle" }
17 rustc-demangle = "0.1.21"
18 rustc_attr = { path = "../rustc_attr" }
19 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
20 rustc_data_structures = { path = "../rustc_data_structures" }
21 rustc_errors = { path = "../rustc_errors" }
22 rustc_fs_util = { path = "../rustc_fs_util" }
23 rustc_hir = { path = "../rustc_hir" }
24 rustc_index = { path = "../rustc_index" }
25 rustc_llvm = { path = "../rustc_llvm" }
26 rustc_macros = { path = "../rustc_macros" }
27 rustc_metadata = { path = "../rustc_metadata" }
28 rustc_query_system = { path = "../rustc_query_system" }
29 rustc_session = { path = "../rustc_session" }
30 rustc_serialize = { path = "../rustc_serialize" }
31 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
32 rustc_target = { path = "../rustc_target" }
33 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
34 rustc_ast = { path = "../rustc_ast" }
35 rustc_span = { path = "../rustc_span" }
36 tempfile = "3.2.0"