2015-11-19 15:20:12 -08:00
|
|
|
[package]
|
|
|
|
|
name = "rustc-main"
|
|
|
|
|
version = "0.0.0"
|
2025-02-20 18:37:58 +00:00
|
|
|
edition = "2024"
|
2015-11-19 15:20:12 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2018-10-20 19:15:06 -07:00
|
|
|
|
2018-11-19 18:28:44 +01:00
|
|
|
# Make sure rustc_codegen_ssa ends up in the sysroot, because this
|
|
|
|
|
# crate is intended to be used by codegen backends, which may not be in-tree.
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
2023-10-20 13:37:29 +11:00
|
|
|
|
|
|
|
|
rustc_driver = { path = "../rustc_driver" }
|
|
|
|
|
rustc_driver_impl = { path = "../rustc_driver_impl" }
|
|
|
|
|
|
2025-07-12 15:28:50 +00:00
|
|
|
rustc_public = { path = "../rustc_public" }
|
2023-10-20 13:37:29 +11:00
|
|
|
|
2025-07-12 15:28:50 +00:00
|
|
|
# Make sure rustc_public_bridge ends up in the sysroot, because this
|
|
|
|
|
# crate is intended to be used by stable MIR consumers, which are not in-tree.
|
|
|
|
|
rustc_public_bridge = { path = "../rustc_public_bridge" }
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|
2018-11-19 18:28:44 +01:00
|
|
|
|
2024-12-02 16:16:41 +00:00
|
|
|
[dependencies.tikv-jemalloc-sys]
|
|
|
|
|
version = "0.6.0"
|
2018-12-19 08:27:23 -08:00
|
|
|
optional = true
|
|
|
|
|
features = ['unprefixed_malloc_on_supported_platforms']
|
|
|
|
|
|
2018-10-20 19:15:06 -07:00
|
|
|
[features]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2025-07-11 13:32:03 +00:00
|
|
|
check_only = ['rustc_driver_impl/check_only']
|
2024-12-02 16:16:41 +00:00
|
|
|
jemalloc = ['dep:tikv-jemalloc-sys']
|
2023-02-02 07:17:46 +01:00
|
|
|
llvm = ['rustc_driver_impl/llvm']
|
|
|
|
|
max_level_info = ['rustc_driver_impl/max_level_info']
|
2022-09-02 20:17:20 +02:00
|
|
|
rustc_randomized_layouts = ['rustc_driver_impl/rustc_randomized_layouts']
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|