bootstrap: Add a bunch of Cargo.toml files

These describe the structure of all our crate dependencies.
This commit is contained in:
Alex Crichton
2016-01-21 15:19:23 -08:00
parent 7cbd2457ad
commit 2581b14147
41 changed files with 642 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
[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
[dependencies]
core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }
[build-dependencies]
build_helper = { path = "../build_helper" }
gcc = "0.3.17"
[features]
debug = []