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

16
src/libsyntax/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
authors = ["The Rust Project Developers"]
name = "syntax"
version = "0.0.0"
[lib]
name = "syntax"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
arena = { path = "../libarena" }
fmt_macros = { path = "../libfmt_macros" }
serialize = { path = "../libserialize" }
term = { path = "../libterm" }
log = { path = "../liblog" }