ba0ed5b13f
This commit moves jemalloc to just the rustc binary rather than the rustc_driver shared library, enusring that it's only used for binaries that opt-in to it like rustc rather than other binaries using librustc_driver like rustdoc/rls/etc. This will hopefully address #56980
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_driver"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_driver"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
arena = { path = "../libarena" }
|
|
graphviz = { path = "../libgraphviz" }
|
|
log = "0.4"
|
|
env_logger = { version = "0.5", default-features = false }
|
|
rustc-rayon = "0.1.1"
|
|
scoped-tls = { version = "0.1.1", features = ["nightly"] }
|
|
rustc = { path = "../librustc" }
|
|
rustc_allocator = { path = "../librustc_allocator" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
rustc_borrowck = { path = "../librustc_borrowck" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_incremental = { path = "../librustc_incremental" }
|
|
rustc_lint = { path = "../librustc_lint" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
rustc_mir = { path = "../librustc_mir" }
|
|
rustc_passes = { path = "../librustc_passes" }
|
|
rustc_plugin = { path = "../librustc_plugin" }
|
|
rustc_privacy = { path = "../librustc_privacy" }
|
|
rustc_resolve = { path = "../librustc_resolve" }
|
|
rustc_save_analysis = { path = "../librustc_save_analysis" }
|
|
rustc_traits = { path = "../librustc_traits" }
|
|
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|
|
syntax_ext = { path = "../libsyntax_ext" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|