]> git.lizzy.rs Git - rust.git/blob - src/libstd/Cargo.toml
CStr::from_bytes
[rust.git] / src / libstd / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "std"
4 version = "0.0.0"
5 build = "build.rs"
6
7 [lib]
8 name = "std"
9 path = "lib.rs"
10 crate-type = ["dylib", "rlib"]
11 test = false
12
13 [dependencies]
14 alloc = { path = "../liballoc" }
15 alloc_jemalloc = { path = "../liballoc_jemalloc", optional = true }
16 alloc_system = { path = "../liballoc_system" }
17 collections = { path = "../libcollections" }
18 core = { path = "../libcore" }
19 libc = { path = "../rustc/libc_shim" }
20 rand = { path = "../librand" }
21 rustc_unicode = { path = "../librustc_unicode" }
22
23 [build-dependencies]
24 build_helper = { path = "../build_helper" }
25 gcc = "0.3"
26
27 [features]
28 jemalloc = ["alloc_jemalloc"]
29 debug-jemalloc = ["alloc_jemalloc/debug"]