cargo/Cargo.toml

89 lines
1.2 KiB
TOML
Raw Normal View History

2014-07-16 00:51:49 +00:00
[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"
2014-07-16 00:51:49 +00:00
[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"
2014-07-16 00:51:49 +00:00
[[bin]]
name = "cargo"
test = false
[[bin]]
name = "cargo-build"
test = false
[[bin]]
name = "cargo-clean"
test = false
[[bin]]
name = "cargo-git-checkout"
test = false
[[bin]]
name = "cargo-read-manifest"
test = false
[[bin]]
name = "cargo-run"
test = false
[[bin]]
name = "cargo-rustc"
test = false
[[bin]]
name = "cargo-test"
test = false
[[bin]]
name = "cargo-verify-project"
test = false
[[bin]]
name = "cargo-version"
test = false
[[bin]]
name = "cargo-new"
test = false
2014-07-22 15:06:36 +00:00
[[bin]]
name = "cargo-doc"
test = false
[[bin]]
name = "cargo-generate-lockfile"
test = false
2014-07-31 22:19:20 +00:00
[[bin]]
name = "cargo-update"
test = false
2014-07-16 00:51:49 +00:00
[[test]]
name = "tests"