forked from rust-lang/cargo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (47 loc) · 922 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "cargo"
version = "0.1.0"
authors = ["Yehuda Katz <[email protected]>",
"Carl Lerche <[email protected]>",
"Alex Crichton <[email protected]>"]
[lib]
name = "cargo"
path = "src/cargo/lib.rs"
[dependencies]
toml = "0.1"
semver = "0.1"
curl = "0.1"
tar = "0.1"
flate2 = "0.1"
git2 = "0.1"
git2-curl = "0.1"
glob = "0.1"
time = "0.1"
log = "0.2"
env_logger = "0.2"
docopt = "0.6"
url = "0.2"
rustc-serialize = "0.2"
term = "0.1"
regex = "0.1"
[target.i686-pc-windows-gnu.dependencies]
winapi = "0.1"
advapi32-sys = "*"
[target.x86_64-pc-windows-gnu.dependencies]
winapi = "0.1"
advapi32-sys = "*"
[dev-dependencies.hamcrest]
git = "https://github.com/carllerche/hamcrest-rust.git"
[dependencies.registry]
path = "src/registry"
[[bin]]
name = "cargo"
test = false
doc = false
[[test]]
name = "tests"
[[bench]]
name = "tests"
path = "tests/tests.rs"
[[test]]
name = "resolve"