bootstrap: Add a bunch of Cargo.toml files
These describe the structure of all our crate dependencies.
This commit is contained in:
16
src/libsyntax/Cargo.toml
Normal file
16
src/libsyntax/Cargo.toml
Normal 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" }
|
||||
Reference in New Issue
Block a user