46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "std"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "std"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib", "rlib"]
|
|
|
|
[dependencies]
|
|
alloc = { path = "../liballoc" }
|
|
alloc_jemalloc = { path = "../liballoc_jemalloc", optional = true }
|
|
alloc_system = { path = "../liballoc_system" }
|
|
panic_unwind = { path = "../libpanic_unwind", optional = true }
|
|
panic_abort = { path = "../libpanic_abort" }
|
|
collections = { path = "../libcollections" }
|
|
core = { path = "../libcore" }
|
|
libc = { path = "../rustc/libc_shim" }
|
|
rand = { path = "../librand" }
|
|
compiler_builtins = { path = "../libcompiler_builtins" }
|
|
std_unicode = { path = "../libstd_unicode" }
|
|
unwind = { path = "../libunwind" }
|
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
|
rustc_asan = { path = "../librustc_asan", optional = true }
|
|
rustc_lsan = { path = "../librustc_lsan", optional = true }
|
|
rustc_msan = { path = "../librustc_msan", optional = true }
|
|
rustc_tsan = { path = "../librustc_tsan", optional = true }
|
|
|
|
[build-dependencies]
|
|
build_helper = { path = "../build_helper" }
|
|
gcc = "0.3.27"
|
|
|
|
[features]
|
|
asan = ["rustc_asan"]
|
|
backtrace = []
|
|
debug-jemalloc = ["alloc_jemalloc/debug"]
|
|
jemalloc = ["alloc_jemalloc"]
|
|
force_alloc_system = []
|
|
lsan = ["rustc_lsan"]
|
|
msan = ["rustc_msan"]
|
|
panic-unwind = ["panic_unwind"]
|
|
tsan = ["rustc_tsan"]
|