]> git.proxmox.com Git - rustc.git/blob - src/dlmalloc/Cargo.toml
New upstream version 1.23.0+dfsg1
[rustc.git] / src / dlmalloc / Cargo.toml
1 [package]
2 name = "dlmalloc"
3 version = "0.1.0"
4 authors = ["Alex Crichton <alex@alexcrichton.com>"]
5
6 [lib]
7 doctest = false
8 test = false
9
10 [target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
11 libc = { version = "0.2", default-features = false }
12
13 [dev-dependencies]
14 rand = "0.3"
15
16 [profile.release]
17 opt-level = 'z'
18
19 [features]
20 debug = []