cargo/Cargo.toml
Alex Crichton 69c16fc6c8 Implement cargo-package
This command will assemble the current package into a tarball ready for
uploading to the cargo registry. Currently no further verification is done
beyond packaging the local repository into a tarball, but in the future this
could execute other operations such as api stability tools.
2014-08-26 19:03:12 -07:00

42 lines
828 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"
[dependencies.tar]
git = "https://github.com/alexcrichton/tar-rs"
[dependencies.flate2]
git = "https://github.com/alexcrichton/flate2-rs"
[[bin]]
name = "cargo"
test = false
doc = false
[[test]]
name = "tests"