]> git.proxmox.com Git - rustc.git/blob - src/librustc_codegen_llvm/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_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 name = "rustc_codegen_llvm"
9 path = "lib.rs"
10 test = false
11 doctest = false
12
13 [dependencies]
14 bitflags = "1.0"
15 flate2 = "1.0"
16 libc = "0.2"
17 measureme = "0.7.1"
18 log = "0.4"
19 rustc_middle = { path = "../librustc_middle" }
20 rustc-demangle = "0.1"
21 rustc_attr = { path = "../librustc_attr" }
22 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
23 rustc_data_structures = { path = "../librustc_data_structures" }
24 rustc_errors = { path = "../librustc_errors" }
25 rustc_feature = { path = "../librustc_feature" }
26 rustc_fs_util = { path = "../librustc_fs_util" }
27 rustc_hir = { path = "../librustc_hir" }
28 rustc_incremental = { path = "../librustc_incremental" }
29 rustc_index = { path = "../librustc_index" }
30 rustc_llvm = { path = "../librustc_llvm" }
31 rustc_session = { path = "../librustc_session" }
32 rustc_serialize = { path = "../libserialize", package = "serialize" }
33 rustc_target = { path = "../librustc_target" }
34 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
35 rustc_ast = { path = "../librustc_ast" }
36 rustc_span = { path = "../librustc_span" }