rust/alloc_system/Cargo.toml
bjorn3 1fb6912cfd Rustup to rustc 1.32.0-nightly (ca79ecd69 2018-11-11)
I had to put the original source of liballoc_system in tree, because it got removed from rustc
2018-11-12 19:37:54 +01:00

17 lines
559 B
TOML

[package]
authors = ["The Rust Project Developers", "bjorn3 (edited to be usable outside the rust source)"]
name = "alloc_system"
version = "0.0.0"
[lib]
name = "alloc_system"
path = "lib.rs"
test = false
doc = false
[dependencies]
core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
# See comments in the source for what this dependency is
[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
dlmalloc = { path = "../rustc/dlmalloc_shim" }