diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-01-21 15:19:23 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-02-11 11:12:32 -0800 |
| commit | 2581b141473f8333728c8dc330a31dc2373dc0e6 (patch) | |
| tree | 04e9bfc83fac53e81c9ef5df5c263f302a071303 /src/libsyntax_ext | |
| parent | 7cbd2457adcd2a47f6e716983bb618541ec25633 (diff) | |
| download | rust-2581b141473f8333728c8dc330a31dc2373dc0e6.tar.gz rust-2581b141473f8333728c8dc330a31dc2373dc0e6.zip | |
bootstrap: Add a bunch of Cargo.toml files
These describe the structure of all our crate dependencies.
Diffstat (limited to 'src/libsyntax_ext')
| -rw-r--r-- | src/libsyntax_ext/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libsyntax_ext/Cargo.toml b/src/libsyntax_ext/Cargo.toml new file mode 100644 index 00000000000..e137815cd32 --- /dev/null +++ b/src/libsyntax_ext/Cargo.toml @@ -0,0 +1,13 @@ +[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" } |
