mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
18 lines
407 B
Markdown
18 lines
407 B
Markdown
Cargo downloads your Rust project’s 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.
|
||
|