cargo/README.md
2014-06-23 17:02:22 -07:00

18 lines
407 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Cargo downloads your Rust projects dependencies and compiles your project.
Learn more at http://crates.io/.
## Compiling cargo
You'll want to clone cargo using --recursive on git, to clone in it's submodule dependencies.
```
$ git clone --recursive https://github.com/carlhuda/cargo
```
or
```
$ git submodule init
$ git submodule update
```
Then it's as simple as ```make``` and you're ready to go.