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,13 @@
[package]
authors = ["The Rust Project Developers"]
name = "alloc_system"
version = "0.0.0"
[lib]
name = "alloc_system"
path = "lib.rs"
test = false
[dependencies]
core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }