cargo/Cargo.toml
Alex Crichton 8cce8996be Remove all subcommand executables
This commit removes all distributed executables except for `cargo`. All
builtin subcommands are implemented through library calls, and the fallback
methods are retained to maintain extensability through new subcommands.

Closes #393
2014-08-26 18:25:28 -07:00

36 lines
688 B
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
[[test]]
name = "tests"