]> git.proxmox.com Git - cargo.git/blame - README.md
Merge pull request #49 from o11c/install-paths
[cargo.git] / README.md
CommitLineData
b4e86302
YK
1Cargo downloads your Rust project’s dependencies and compiles your project.
2
3Learn more at http://crates.io/.
4
41a4df26 5## Compiling cargo
6
eb7a1637
AC
7You'll want to clone cargo using --recursive on git, to clone in it's submodule
8dependencies.
83651db4 9```
bbd57905 10$ git clone --recursive https://github.com/rust-lang/cargo
83651db4 11```
12or
41a4df26 13```
14$ git submodule init
bbfce4ac 15$ git submodule update
41a4df26 16```
eb7a1637
AC
17Then it's as simple as ```make``` followed by ```make install``` and you're
18ready to go.
41a4df26 19
c6fc2f58
AC
20## License
21
22Cargo is primarily distributed under the terms of both the MIT license
23and the Apache License (Version 2.0).
24
25See LICENSE-APACHE and LICENSE-MIT for details.