2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_llvm"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1.0"
|
2023-07-04 12:53:44 -05:00
|
|
|
cstr = "0.2"
|
2020-08-27 22:58:48 -05:00
|
|
|
libc = "0.2"
|
2021-10-07 08:08:44 -05:00
|
|
|
measureme = "10.0.0"
|
2023-05-09 22:29:27 -05:00
|
|
|
object = { version = "0.31.1", default-features = false, features = [
|
2023-01-09 11:49:24 -06:00
|
|
|
"std",
|
|
|
|
"read",
|
|
|
|
] }
|
2020-08-27 22:58:48 -05:00
|
|
|
tracing = "0.1"
|
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2021-08-10 16:05:25 -05:00
|
|
|
rustc-demangle = "0.1.21"
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-04-16 07:33:00 -05:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-07-26 12:11:30 -05:00
|
|
|
rustc_llvm = { path = "../rustc_llvm" }
|
2022-02-04 06:19:55 -06:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-05-29 15:49:59 -05:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2020-11-14 09:48:54 -06:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2022-04-01 00:50:41 -05:00
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-11-03 09:34:24 -05:00
|
|
|
serde = { version = "1", features = [ "derive" ]}
|
|
|
|
serde_json = "1"
|