]> git.proxmox.com Git - cargo.git/blob - Cargo.toml
Just drop the part about duplicate issues
[cargo.git] / Cargo.toml
1 [package]
2 name = "cargo"
3 version = "0.32.0"
4 authors = ["Yehuda Katz <wycats@gmail.com>",
5 "Carl Lerche <me@carllerche.com>",
6 "Alex Crichton <alex@alexcrichton.com>"]
7 license = "MIT OR Apache-2.0"
8 homepage = "https://crates.io"
9 repository = "https://github.com/rust-lang/cargo"
10 documentation = "https://docs.rs/cargo"
11 description = """
12 Cargo, a package manager for Rust.
13 """
14
15 [lib]
16 name = "cargo"
17 path = "src/cargo/lib.rs"
18
19 [dependencies]
20 atty = "0.2"
21 bytesize = "1.0"
22 crates-io = { path = "src/crates-io", version = "0.20" }
23 crossbeam-utils = "0.5"
24 crypto-hash = "0.3.1"
25 curl = { version = "0.4.17", features = ['http2'] }
26 env_logger = "0.5.11"
27 failure = "0.1.2"
28 filetime = "0.2"
29 flate2 = "1.0.3"
30 fs2 = "0.4"
31 git2 = "0.7.5"
32 git2-curl = "0.8.1"
33 glob = "0.2.11"
34 hex = "0.3"
35 home = "0.3"
36 ignore = "0.4"
37 lazy_static = "1.0.0"
38 jobserver = "0.1.11"
39 lazycell = "1.2.0"
40 libc = "0.2"
41 log = "0.4"
42 libgit2-sys = "0.7.9"
43 num_cpus = "1.0"
44 opener = "0.3.0"
45 rustfix = "0.4.2"
46 same-file = "1"
47 semver = { version = "0.9.0", features = ["serde"] }
48 serde = "1.0"
49 serde_derive = "1.0"
50 serde_ignored = "0.0.4"
51 serde_json = { version = "1.0.30", features = ["raw_value"] }
52 shell-escape = "0.1.4"
53 tar = { version = "0.4.15", default-features = false }
54 tempfile = "3.0"
55 termcolor = "1.0"
56 toml = "0.4.2"
57 url = "1.1"
58 clap = "2.31.2"
59 unicode-width = "0.1.5"
60 openssl = { version = '0.10.11', optional = true }
61
62 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
63 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
64 # for more information.
65 rustc-workspace-hack = "1.0.0"
66
67 [target.'cfg(target_os = "macos")'.dependencies]
68 core-foundation = { version = "0.6.0", features = ["mac_os_10_7_support"] }
69
70 [target.'cfg(windows)'.dependencies]
71 miow = "0.3.1"
72 fwdansi = "1"
73
74 [target.'cfg(windows)'.dependencies.winapi]
75 version = "0.3"
76 features = [
77 "basetsd",
78 "handleapi",
79 "jobapi",
80 "jobapi2",
81 "memoryapi",
82 "minwindef",
83 "ntdef",
84 "ntstatus",
85 "processenv",
86 "processthreadsapi",
87 "psapi",
88 "synchapi",
89 "winerror",
90 "winbase",
91 "wincon",
92 "winnt",
93 ]
94
95 [dev-dependencies]
96 bufstream = "0.1"
97 proptest = "0.8.7"
98
99 [[bin]]
100 name = "cargo"
101 test = false
102 doc = false
103
104 [features]
105 vendored-openssl = ['openssl/vendored']