cargo/Cargo.toml

57 lines
1.1 KiB
TOML
Raw Normal View History

2014-07-16 00:51:49 +00:00
[project]
name = "cargo"
2015-05-28 22:39:03 +00:00
version = "0.3.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>"]
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]
curl = "0.2"
docopt = "0.6"
2015-03-26 18:17:44 +00:00
env_logger = "0.3"
flate2 = "0.2"
git2 = "0.2"
git2-curl = "0.2"
glob = "0.2"
libc = "0.1"
libgit2-sys = "0.2"
log = "0.3"
num_cpus = "0.1"
regex = "0.1"
registry = { path = "src/registry" }
rustc-serialize = "0.3"
semver = "0.1"
tar = { version = "0.2", features = ["nightly"] }
term = "0.2"
threadpool = "0.1"
time = "0.1"
toml = "0.1"
url = "0.2"
filetime = "0.1"
2014-07-16 00:51:49 +00:00
[target.i686-pc-windows-gnu]
2015-03-30 19:30:50 +00:00
dependencies = { winapi = "0.1", advapi32-sys = "0.1", kernel32-sys = "0.1" }
[target.x86_64-pc-windows-gnu]
2015-03-30 19:30:50 +00:00
dependencies = { winapi = "0.1", advapi32-sys = "0.1", kernel32-sys = "0.1" }
[dev-dependencies]
tempdir = "0.3"
hamcrest = { git = "https://github.com/carllerche/hamcrest-rust.git" }
bufstream = "0.1"
filetime = "0.1"
2014-07-16 00:51:49 +00:00
[[bin]]
name = "cargo"
test = false
2014-08-14 21:54:56 +00:00
doc = false
2014-07-16 00:51:49 +00:00
[[test]]
name = "tests"
[[test]]
name = "resolve"