]> git.proxmox.com Git - cargo.git/blame - Cargo.toml
Auto merge of #4167 - alexcrichton:keep-metadata, r=matklad
[cargo.git] / Cargo.toml
CommitLineData
6f240656 1[package]
4abf27e7 2name = "cargo"
90299a66 3version = "0.21.0"
4abf27e7 4authors = ["Yehuda Katz <wycats@gmail.com>",
6e23ead8
HW
5 "Carl Lerche <me@carllerche.com>",
6 "Alex Crichton <alex@alexcrichton.com>"]
a4c54384
AC
7license = "MIT/Apache-2.0"
8homepage = "https://crates.io"
9repository = "https://github.com/rust-lang/cargo"
d941bea3 10documentation = "https://docs.rs/cargo"
a4c54384
AC
11description = """
12Cargo, a package manager for Rust.
13"""
4abf27e7 14
ea3d601f 15[lib]
4abf27e7
AC
16name = "cargo"
17path = "src/cargo/lib.rs"
18
e8484805 19[dependencies]
90299a66 20crates-io = { path = "src/crates-io", version = "0.10" }
dd342960 21crossbeam = "0.2"
923f21c3 22curl = "0.4.6"
10373f40 23docopt = "0.8"
a2c82595 24env_logger = "0.4"
e95044e3 25error-chain = "0.10.0"
0da6c943 26filetime = "0.1"
e4ae24b1 27flate2 = "0.2"
a2c82595 28fs2 = "0.4"
15acaa9c
AC
29git2 = "0.6"
30git2-curl = "0.7"
e4ae24b1 31glob = "0.2"
10373f40 32hex = "0.2"
728694ab 33jobserver = "0.1.4"
a40f7d90 34libc = "0.2"
15acaa9c 35libgit2-sys = "0.6"
e4ae24b1 36log = "0.3"
7a8ad369 37num_cpus = "1.0"
74777c12 38scoped-tls = "0.1"
0ceab8e3 39semver = { version = "0.7.0", features = ["serde"] }
0b59f17d
AC
40serde = "1.0"
41serde_derive = "1.0"
0b59f17d 42serde_ignored = "0.0.3"
cbf25a9b 43serde_json = "1.0"
d105e752 44shell-escape = "0.1"
7a8ad369 45tar = { version = "0.4", default-features = false }
1a6bad8e 46tempdir = "0.3"
f8fb0a02 47termcolor = "0.3"
0b59f17d 48toml = "0.4"
32562e92 49url = "1.1"
8bd0572c 50
2a66dfba 51[target.'cfg(unix)'.dependencies]
0af16532 52openssl = "0.9"
2a66dfba 53
f6dd5c2e
NF
54[target.'cfg(windows)'.dependencies]
55advapi32-sys = "0.2"
56kernel32-sys = "0.2"
a2c82595 57miow = "0.2"
f6dd5c2e
NF
58psapi-sys = "0.1"
59winapi = "0.2"
60
22e7ede6 61[dev-dependencies]
d46aec56 62bufstream = "0.1"
763ba535 63cargotest = { path = "tests/cargotest" }
852968e6
AC
64filetime = "0.1"
65hamcrest = "=0.1.1"
9fba127e 66
4abf27e7
AC
67[[bin]]
68name = "cargo"
69test = false
d8450848 70doc = false