]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/Cargo.toml
Merge commit 'dbee13661efa269cb4cd57bb4c6b99a19732b484' into sync_cg_clif-2020-12-27
[rust.git] / compiler / rustc_codegen_llvm / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_codegen_llvm"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 test = false
9 doctest = false
10
11 [dependencies]
12 bitflags = "1.0"
13 libc = "0.2"
14 measureme = "9.0.0"
15 snap = "1"
16 tracing = "0.1"
17 rustc_middle = { path = "../rustc_middle" }
18 rustc-demangle = "0.1.18"
19 rustc_attr = { path = "../rustc_attr" }
20 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
21 rustc_data_structures = { path = "../rustc_data_structures" }
22 rustc_errors = { path = "../rustc_errors" }
23 rustc_feature = { path = "../rustc_feature" }
24 rustc_fs_util = { path = "../rustc_fs_util" }
25 rustc_hir = { path = "../rustc_hir" }
26 rustc_incremental = { path = "../rustc_incremental" }
27 rustc_index = { path = "../rustc_index" }
28 rustc_llvm = { path = "../rustc_llvm" }
29 rustc_session = { path = "../rustc_session" }
30 rustc_serialize = { path = "../rustc_serialize" }
31 rustc_target = { path = "../rustc_target" }
32 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
33 rustc_ast = { path = "../rustc_ast" }
34 rustc_span = { path = "../rustc_span" }