mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
3cf820e17d
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
26 lines
661 B
TOML
26 lines
661 B
TOML
[package]
|
|
name = "rustc-main"
|
|
version = "0.0.0"
|
|
edition = '2018'
|
|
|
|
[dependencies]
|
|
rustc_driver = { path = "../rustc_driver" }
|
|
|
|
# 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.
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
|
|
|
[dependencies.tikv-jemalloc-sys]
|
|
version = '0.4.0'
|
|
optional = true
|
|
features = ['unprefixed_malloc_on_supported_platforms']
|
|
|
|
[dependencies.tikv-jemallocator]
|
|
version = '0.4.0'
|
|
optional = true
|
|
|
|
[features]
|
|
jemalloc = ['tikv-jemalloc-sys', 'tikv-jemallocator']
|
|
llvm = ['rustc_driver/llvm']
|
|
max_level_info = ['rustc_driver/max_level_info']
|