1fb6912cfd
I had to put the original source of liballoc_system in tree, because it got removed from rustc
17 lines
559 B
TOML
17 lines
559 B
TOML
[package]
|
|
authors = ["The Rust Project Developers", "bjorn3 (edited to be usable outside the rust source)"]
|
|
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" }
|