]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/Cargo.toml
rustc: Allow cdylibs to link against dylibs
[rust.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 log = "0.4"
18 rustc = { path = "../librustc" }
19 rustc-demangle = "0.1"
20 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
21 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_errors = { path = "../librustc_errors" }
24 rustc_feature = { path = "../librustc_feature" }
25 rustc_fs_util = { path = "../librustc_fs_util" }
26 rustc_hir = { path = "../librustc_hir" }
27 rustc_incremental = { path = "../librustc_incremental" }
28 rustc_index = { path = "../librustc_index" }
29 rustc_llvm = { path = "../librustc_llvm" }
30 rustc_session = { path = "../librustc_session" }
31 rustc_target = { path = "../librustc_target" }
32 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
33 syntax = { path = "../libsyntax" }
34 rustc_span = { path = "../librustc_span" }