summary refs log tree commit diff
path: root/src/liballoc_system/Cargo.toml
blob: c34e2f203a8371267134c2cc1271fcb15e24f45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
authors = ["The Rust Project Developers"]
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" }