cargo/Cargo.toml
Alex Crichton c9e0863137 Revert "Use libgit2 for driving git instead of the CLI"
This reverts commit 3cd82ed7a1.

Conflicts:
	src/cargo/sources/git/utils.rs
2014-08-19 09:10:14 -07:00

107 lines
1.4 KiB
TOML

[project]
name = "cargo"
version = "0.0.1-pre"
authors = ["Yehuda Katz <wycats@gmail.com>",
"Carl Lerche <me@carllerche.com>"]
[lib]
name = "cargo"
path = "src/cargo/lib.rs"
[dependencies.docopt]
git = "https://github.com/burntsushi/docopt.rs"
[dependencies.docopt_macros]
git = "https://github.com/burntsushi/docopt.rs"
[dependencies.toml]
git = "https://github.com/alexcrichton/toml-rs"
[dependencies.hamcrest]
git = "https://github.com/carllerche/hamcrest-rust.git"
[dependencies.url]
git = "https://github.com/servo/rust-url"
[dependencies.semver]
git = "https://github.com/rust-lang/semver"
[[bin]]
name = "cargo"
test = false
doc = false
[[bin]]
name = "cargo-build"
test = false
doc = false
[[bin]]
name = "cargo-clean"
test = false
doc = false
[[bin]]
name = "cargo-git-checkout"
test = false
doc = false
[[bin]]
name = "cargo-read-manifest"
test = false
doc = false
[[bin]]
name = "cargo-run"
test = false
doc = false
[[bin]]
name = "cargo-rustc"
test = false
doc = false
[[bin]]
name = "cargo-test"
test = false
doc = false
[[bin]]
name = "cargo-bench"
test = false
[[bin]]
name = "cargo-verify-project"
test = false
doc = false
[[bin]]
name = "cargo-version"
test = false
doc = false
[[bin]]
name = "cargo-new"
test = false
doc = false
[[bin]]
name = "cargo-doc"
test = false
doc = false
[[bin]]
name = "cargo-generate-lockfile"
test = false
doc = false
[[bin]]
name = "cargo-update"
test = false
doc = false
[[test]]
name = "tests"