rust/compiler/rustc_codegen_llvm/Cargo.toml

35 lines
1 KiB
TOML
Raw Normal View History

2020-08-28 05:58:48 +02:00
[package]
name = "rustc_codegen_llvm"
version = "0.0.0"
edition = "2018"
[lib]
test = false
doctest = false
[dependencies]
bitflags = "1.0"
2021-02-13 12:17:15 +01:00
cstr = "0.2"
2020-08-28 05:58:48 +02:00
libc = "0.2"
measureme = "9.1.0"
2020-08-28 05:58:48 +02:00
snap = "1"
tracing = "0.1"
rustc_middle = { path = "../rustc_middle" }
2021-08-10 23:05:25 +02:00
rustc-demangle = "0.1.21"
rustc_arena = { path = "../rustc_arena" }
2020-08-28 05:58:48 +02: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" }
rustc_fs_util = { path = "../rustc_fs_util" }
rustc_hir = { path = "../rustc_hir" }
rustc_index = { path = "../rustc_index" }
2020-07-26 19:11:30 +02:00
rustc_llvm = { path = "../rustc_llvm" }
2021-05-29 22:49:59 +02:00
rustc_metadata = { path = "../rustc_metadata" }
2020-08-28 05:58:48 +02:00
rustc_session = { path = "../rustc_session" }
rustc_serialize = { path = "../rustc_serialize" }
rustc_target = { path = "../rustc_target" }
2021-02-14 15:37:30 +01:00
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
2020-08-28 05:58:48 +02:00
rustc_ast = { path = "../rustc_ast" }
rustc_span = { path = "../rustc_span" }