]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/Cargo.toml
Rollup merge of #99393 - Logarithmus:feature/99255-omit-const-generic-suffixes, r...
[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 tracing = "0.1"
17 rustc_middle = { path = "../rustc_middle" }
18 rustc-demangle = "0.1.21"
19 rustc_attr = { path = "../rustc_attr" }
20 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
21 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
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_target = { path = "../rustc_target" }
34 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
35 rustc_ast = { path = "../rustc_ast" }
36 rustc_span = { path = "../rustc_span" }