]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/Cargo.toml
Rollup merge of #101864 - notriddle:notriddle/h1-h2-h3-h4, r=GuillaumeGomez
[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 doctest = false
9
10 [dependencies]
11 bitflags = "1.0"
12 cstr = "0.2"
13 libc = "0.2"
14 libloading = "0.7.1"
15 measureme = "10.0.0"
16 object = { version = "0.29.0", default-features = false, features = ["std", "read_core", "archive", "coff", "elf", "macho", "pe"] }
17 tracing = "0.1"
18 rustc_middle = { path = "../rustc_middle" }
19 rustc-demangle = "0.1.21"
20 rustc_attr = { path = "../rustc_attr" }
21 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
22 rustc_data_structures = { path = "../rustc_data_structures" }
23 rustc_errors = { path = "../rustc_errors" }
24 rustc_fs_util = { path = "../rustc_fs_util" }
25 rustc_hir = { path = "../rustc_hir" }
26 rustc_index = { path = "../rustc_index" }
27 rustc_llvm = { path = "../rustc_llvm" }
28 rustc_macros = { path = "../rustc_macros" }
29 rustc_metadata = { path = "../rustc_metadata" }
30 rustc_query_system = { path = "../rustc_query_system" }
31 rustc_session = { path = "../rustc_session" }
32 rustc_serialize = { path = "../rustc_serialize" }
33 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
34 rustc_target = { path = "../rustc_target" }
35 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
36 rustc_ast = { path = "../rustc_ast" }
37 rustc_span = { path = "../rustc_span" }