cargo/Cargo.toml

63 lines
1.2 KiB
TOML
Raw Normal View History

[package]
2014-07-16 00:51:49 +00:00
name = "cargo"
2016-12-20 00:28:47 +00:00
version = "0.17.0"
2014-07-16 00:51:49 +00:00
authors = ["Yehuda Katz <wycats@gmail.com>",
2014-11-13 23:08:17 +00:00
"Carl Lerche <me@carllerche.com>",
"Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
homepage = "https://crates.io"
repository = "https://github.com/rust-lang/cargo"
documentation = "http://doc.crates.io/cargo"
description = """
Cargo, a package manager for Rust.
"""
2014-07-16 00:51:49 +00:00
2014-08-16 20:00:46 +00:00
[lib]
2014-07-16 00:51:49 +00:00
name = "cargo"
path = "src/cargo/lib.rs"
2014-12-19 03:01:37 +00:00
[dependencies]
advapi32-sys = "0.2"
2016-12-25 16:00:37 +00:00
crates-io = { path = "src/crates-io", version = "0.6" }
crossbeam = "0.2"
2016-11-09 15:11:16 +00:00
curl = "0.4"
docopt = "0.6"
2015-03-26 18:17:44 +00:00
env_logger = "0.3"
filetime = "0.1"
flate2 = "0.2"
2016-11-09 15:11:16 +00:00
fs2 = "0.3"
git2 = "0.6"
git2-curl = "0.7"
glob = "0.2"
kernel32-sys = "0.2"
libc = "0.2"
2016-11-09 15:11:16 +00:00
libgit2-sys = "0.6"
log = "0.3"
miow = "0.1"
num_cpus = "1.0"
psapi-sys = "0.1"
regex = "0.1"
rustc-serialize = "0.3"
2016-10-07 20:03:08 +00:00
semver = "0.5.0"
shell-escape = "0.1"
tar = { version = "0.4", default-features = false }
tempdir = "0.3"
term = "0.4.4"
toml = "0.2"
2016-03-02 15:37:44 +00:00
url = "1.1"
winapi = "0.2"
[target.'cfg(unix)'.dependencies]
openssl = "0.9"
[dev-dependencies]
hamcrest = "0.1"
bufstream = "0.1"
filetime = "0.1"
cargotest = { path = "tests/cargotest" }
2014-07-16 00:51:49 +00:00
[[bin]]
name = "cargo"
test = false
2014-08-14 21:54:56 +00:00
doc = false