blob: 99c0bf2aaab4847865d398b07bda98e70bf77759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[package]
authors = ["The Rust Project Developers"]
name = "alloc_jemalloc"
version = "0.0.0"
build = "build.rs"
links = "jemalloc"
[lib]
name = "alloc_jemalloc"
path = "lib.rs"
test = false
doc = false
[dependencies]
core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }
[target.'cfg(not(stage0))'.dependencies]
alloc = { path = "../liballoc" }
alloc_system = { path = "../liballoc_system" }
[build-dependencies]
build_helper = { path = "../build_helper" }
gcc = "0.3.50"
[features]
debug = []
|