]> git.lizzy.rs Git - rust.git/blob - src/liballoc_system/Cargo.toml
Inject the `compiler_builtins` crate whenever the `core` crate is injected
[rust.git] / src / liballoc_system / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "alloc_system"
4 version = "0.0.0"
5
6 [lib]
7 name = "alloc_system"
8 path = "lib.rs"
9 test = false
10 doc = false
11
12 [dependencies]
13 alloc = { path = "../liballoc" }
14 core = { path = "../libcore" }
15 libc = { path = "../rustc/libc_shim" }
16 compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
17
18 # See comments in the source for what this dependency is
19 [target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
20 dlmalloc = { path = "../rustc/dlmalloc_shim" }