rust/src/libsyntax_ext/Cargo.toml
Alex Crichton 2581b14147 bootstrap: Add a bunch of Cargo.toml files
These describe the structure of all our crate dependencies.
2016-02-11 11:12:32 -08:00

13 lines
250 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "syntax_ext"
version = "0.0.0"
[lib]
name = "syntax_ext"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
fmt_macros = { path = "../libfmt_macros" }
syntax = { path = "../libsyntax" }