mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
33 lines
843 B
Markdown
33 lines
843 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/rust-lang/cargo
|
||
```
|
||
or
|
||
```
|
||
$ git submodule init
|
||
$ git submodule update
|
||
```
|
||
Then it's as simple as ```make``` followed by ```make install``` and you're
|
||
ready to go.
|
||
|
||
## Contributing to the Docs
|
||
|
||
To contribute to the docs, please submit pull requests to [wycats/cargo-website][1].
|
||
All you need to do is change the markdown files in the source directory.
|
||
|
||
[1]: https://github.com/wycats/cargo-website
|
||
|
||
## License
|
||
|
||
Cargo is primarily distributed under the terms of both the MIT license
|
||
and the Apache License (Version 2.0).
|
||
|
||
See LICENSE-APACHE and LICENSE-MIT for details.
|