]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/Cargo.toml
Add extended error message for E0523
[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.30.1", default-features = false, features = [
15     "std",
16     "read",
17 ] }
18 tracing = "0.1"
19 rustc_middle = { path = "../rustc_middle" }
20 rustc-demangle = "0.1.21"
21 rustc_attr = { path = "../rustc_attr" }
22 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
23 rustc_data_structures = { path = "../rustc_data_structures" }
24 rustc_errors = { path = "../rustc_errors" }
25 rustc_fs_util = { path = "../rustc_fs_util" }
26 rustc_hir = { path = "../rustc_hir" }
27 rustc_index = { path = "../rustc_index" }
28 rustc_llvm = { path = "../rustc_llvm" }
29 rustc_macros = { path = "../rustc_macros" }
30 rustc_metadata = { path = "../rustc_metadata" }
31 rustc_query_system = { path = "../rustc_query_system" }
32 rustc_session = { path = "../rustc_session" }
33 rustc_serialize = { path = "../rustc_serialize" }
34 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
35 rustc_target = { path = "../rustc_target" }
36 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
37 rustc_ast = { path = "../rustc_ast" }
38 rustc_span = { path = "../rustc_span" }
39 tempfile = "3.2.0"