]> git.proxmox.com Git - cargo.git/blame - Cargo.toml
Bootstrap cargo with cargo
[cargo.git] / Cargo.toml
CommitLineData
4abf27e7
AC
1[project]
2
3name = "cargo"
4version = "0.0.1-pre"
5authors = ["Yehuda Katz <wycats@gmail.com>",
6 "Carl Lerche <me@carllerche.com>"]
7
8[[lib]]
9
10name = "cargo"
11path = "src/cargo/lib.rs"
12
13# TODO: remove all these `rev` markers once we have an official lockfile
14[dependencies.hammer]
15git = "https://github.com/wycats/hammer.rs"
16rev = "c085c639"
17
18[dependencies.toml]
19git = "https://github.com/alexcrichton/toml-rs"
20rev = "a3c7f2c3"
21
22[dependencies.hamcrest]
23git = "https://github.com/carllerche/hamcrest-rust.git"
24rev = "05acf768"
25
26[[bin]]
27name = "cargo"
28test = false
29
30[[bin]]
31name = "cargo-build"
32test = false
33
34[[bin]]
35name = "cargo-clean"
36test = false
37
38[[bin]]
39name = "cargo-git-checkout"
40test = false
41
42[[bin]]
43name = "cargo-read-manifest"
44test = false
45
46[[bin]]
47name = "cargo-run"
48test = false
49
50[[bin]]
51name = "cargo-rustc"
52test = false
53
54[[bin]]
55name = "cargo-test"
56test = false
57
58[[bin]]
59name = "cargo-verify-project"
60test = false
61
62[[bin]]
63name = "cargo-version"
64test = false
65
66[[bin]]
67name = "cargo-new"
68test = false
69
70[[test]]
71name = "tests"