From 9e8f32afc22751ab3540f37a8c58511ede9d08fe Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Sat, 28 Jun 2014 19:24:44 -0700 Subject: [PATCH] Fix issue #66 Add a basic Cargo manifest file so Cargo can build itself --- Cargo.toml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000000..2307d31ea86 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,41 @@ +[package] +name = "cargo" +version = "0.1.0" +authors = [ "Yehuda Katz ", "Carl Lerche " ] + +[dependencies.hammer] +git = "https://github.com/wycats/hammer.rs.git" + +[dependencies.hamcrest] +git = "https://github.com/carllerche/hamcrest-rust.git" + +[dependencies.toml] +git = "https://github.com/alexcrichton/toml-rs.git" + +[[lib]] +name = "cargo" +path = "src/cargo/lib.rs" + +[[bin]] +name = "cargo" +path = "src/bin/cargo.rs" + +[[bin]] +name = "cargo-build" +path = "src/bin/cargo-build.rs" + +[[bin]] +name = "cargo-git-checkout" +path = "src/bin/cargo-git-checkout.rs" + +[[bin]] +name = "cargo-read-manifest" +path = "src/bin/cargo-read-manifest.rs" + +[[bin]] +name = "cargo-rustc" +path = "src/bin/cargo-rustc.rs" + +[[bin]] +name = "cargo-verify-project" +path = "src/bin/cargo-verify-project.rs" \ No newline at end of file