2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_llvm"
|
|
|
|
version = "0.0.0"
|
2025-02-20 18:37:58 +00:00
|
|
|
edition = "2024"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2023-12-30 17:09:02 +01:00
|
|
|
bitflags = "2.4.1"
|
2025-01-06 21:36:38 +11:00
|
|
|
# To avoid duplicate dependencies, this should match the version of gimli used
|
|
|
|
# by `rustc_codegen_ssa` via its `thorin-dwp` dependency.
|
2025-01-05 11:38:43 +11:00
|
|
|
gimli = "0.30"
|
2024-02-23 16:37:47 +03:00
|
|
|
itertools = "0.12"
|
2020-08-27 22:58:48 -05:00
|
|
|
libc = "0.2"
|
2025-02-15 09:19:02 +08:00
|
|
|
measureme = "12.0.1"
|
2024-08-07 02:03:57 -05:00
|
|
|
object = { version = "0.36.3", default-features = false, features = ["std", "read"] }
|
2021-08-11 00:05:25 +03:00
|
|
|
rustc-demangle = "0.1.21"
|
2024-10-08 17:29:00 -07:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2024-12-13 14:47:11 +01:00
|
|
|
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-04-16 14:33:00 +02:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
2025-02-15 15:18:19 -05:00
|
|
|
rustc_hashes = { path = "../rustc_hashes" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-07-26 20:11:30 +03:00
|
|
|
rustc_llvm = { path = "../rustc_llvm" }
|
2022-02-04 13:19:55 +01:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-05-29 22:49:59 +02:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2020-11-14 16:48:54 +01:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2024-04-07 19:35:49 -07:00
|
|
|
rustc_sanitizers = { path = "../rustc_sanitizers" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-03-31 22:50:41 -07:00
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-11-03 22:34:24 +08:00
|
|
|
serde = { version = "1", features = [ "derive" ]}
|
|
|
|
serde_json = "1"
|
2023-10-20 13:37:29 +11:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|