57cad5722d
This is to pull in changes to support ARM MUSL targets. This change also commits a couple of other cargo-generated changes to other dependencies in the various Cargo.toml files.
33 lines
835 B
TOML
33 lines
835 B
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" }
|
|
panic_abort = { path = "../libpanic_abort" }
|
|
collections = { path = "../libcollections" }
|
|
core = { path = "../libcore" }
|
|
libc = { path = "../rustc/libc_shim" }
|
|
rand = { path = "../librand" }
|
|
rustc_unicode = { path = "../librustc_unicode" }
|
|
unwind = { path = "../libunwind" }
|
|
|
|
[build-dependencies]
|
|
build_helper = { path = "../build_helper" }
|
|
gcc = "0.3.27"
|
|
|
|
[features]
|
|
backtrace = []
|
|
jemalloc = ["alloc_jemalloc"]
|
|
debug-jemalloc = ["alloc_jemalloc/debug"]
|