rust/compiler/rustc_codegen_llvm/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.4 KiB
TOML
Raw Normal View History

2020-08-28 03:58:48 +00:00
[package]
name = "rustc_codegen_llvm"
version = "0.0.0"
2021-09-19 16:49:55 +00:00
edition = "2021"
2020-08-28 03:58:48 +00:00
[lib]
test = false
[dependencies]
# tidy-alphabetical-start
bitflags = "2.4.1"
itertools = "0.12"
2020-08-28 03:58:48 +00:00
libc = "0.2"
2024-01-13 15:32:03 +00:00
measureme = "11"
object = { version = "0.32.0", default-features = false, features = ["std", "read"] }
2021-08-10 21:05:25 +00:00
rustc-demangle = "0.1.21"
rustc_ast = { path = "../rustc_ast" }
2020-08-28 03:58:48 +00: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_fluent_macro = { path = "../rustc_fluent_macro" }
2020-08-28 03:58:48 +00:00
rustc_fs_util = { path = "../rustc_fs_util" }
rustc_hir = { path = "../rustc_hir" }
rustc_index = { path = "../rustc_index" }
2020-07-26 17:11:30 +00:00
rustc_llvm = { path = "../rustc_llvm" }
rustc_macros = { path = "../rustc_macros" }
2021-05-29 20:49:59 +00:00
rustc_metadata = { path = "../rustc_metadata" }
rustc_middle = { path = "../rustc_middle" }
2020-11-14 15:48:54 +00:00
rustc_query_system = { path = "../rustc_query_system" }
rustc_sanitizers = { path = "../rustc_sanitizers" }
2020-08-28 03:58:48 +00:00
rustc_session = { path = "../rustc_session" }
rustc_span = { path = "../rustc_span" }
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
2020-08-28 03:58:48 +00:00
rustc_target = { path = "../rustc_target" }
2022-11-03 14:34:24 +00:00
serde = { version = "1", features = [ "derive" ]}
serde_json = "1"
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
tracing = "0.1"
# tidy-alphabetical-end