2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
2018-05-08 08:10:16 -05:00
|
|
|
name = "rustc_codegen_llvm"
|
2016-01-21 17:19:23 -06:00
|
|
|
version = "0.0.0"
|
2019-02-17 12:58:58 -06:00
|
|
|
edition = "2018"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[lib]
|
2018-05-08 08:10:16 -05:00
|
|
|
name = "rustc_codegen_llvm"
|
2016-01-21 17:19:23 -06:00
|
|
|
path = "lib.rs"
|
2016-04-29 16:23:15 -05:00
|
|
|
test = false
|
2019-10-22 10:51:35 -05:00
|
|
|
doctest = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2019-10-22 10:51:35 -05:00
|
|
|
bitflags = "1.0"
|
|
|
|
flate2 = "1.0"
|
|
|
|
libc = "0.2"
|
2020-02-11 15:37:16 -06:00
|
|
|
measureme = "0.7.1"
|
2019-10-22 10:51:35 -05:00
|
|
|
log = "0.4"
|
|
|
|
rustc = { path = "../librustc" }
|
|
|
|
rustc-demangle = "0.1"
|
2020-01-11 06:15:20 -06:00
|
|
|
rustc_attr = { path = "../librustc_attr" }
|
2019-10-22 10:51:35 -05:00
|
|
|
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
|
|
|
|
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
|
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2019-12-05 21:04:35 -06:00
|
|
|
rustc_feature = { path = "../librustc_feature" }
|
2019-10-22 10:51:35 -05:00
|
|
|
rustc_fs_util = { path = "../librustc_fs_util" }
|
2020-01-04 19:37:57 -06:00
|
|
|
rustc_hir = { path = "../librustc_hir" }
|
2019-10-22 10:51:35 -05:00
|
|
|
rustc_incremental = { path = "../librustc_incremental" }
|
|
|
|
rustc_index = { path = "../librustc_index" }
|
2016-01-21 17:19:23 -06:00
|
|
|
rustc_llvm = { path = "../librustc_llvm" }
|
2019-12-05 21:04:35 -06:00
|
|
|
rustc_session = { path = "../librustc_session" }
|
2019-12-21 04:37:15 -06:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2019-10-22 10:51:35 -05:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
2019-12-30 06:48:00 -06:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2020-02-29 11:37:32 -06:00
|
|
|
rustc_ast = { path = "../librustc_ast" }
|
2019-12-31 11:15:40 -06:00
|
|
|
rustc_span = { path = "../librustc_span" }
|