From 2581b141473f8333728c8dc330a31dc2373dc0e6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 21 Jan 2016 15:19:23 -0800 Subject: bootstrap: Add a bunch of Cargo.toml files These describe the structure of all our crate dependencies. --- src/libtest/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/libtest/Cargo.toml (limited to 'src/libtest/Cargo.toml') diff --git a/src/libtest/Cargo.toml b/src/libtest/Cargo.toml new file mode 100644 index 00000000000..96a84496b9c --- /dev/null +++ b/src/libtest/Cargo.toml @@ -0,0 +1,14 @@ +[package] +authors = ["The Rust Project Developers"] +name = "test" +version = "0.0.0" + +[lib] +name = "test" +path = "lib.rs" +crate-type = ["dylib", "rlib"] + +[dependencies] +getopts = { path = "../libgetopts" } +term = { path = "../libterm" } +serialize = { path = "../libserialize" } -- cgit v1.2.1