Find a file
Yehuda Katz 5919fa0dfc Only force update git if -u is passed
This will become moot once we have a lockfile, because we'll be able to
check whether the last rev we used is still available and skip fetching.
2014-06-23 18:54:13 -07:00
.vagrant/machines/default/virtualbox WIP 2014-04-11 17:39:18 -07:00
DESIGN WIP 2014-04-11 17:39:18 -07:00
libs Move from rust-toml to toml-rs 2014-06-23 11:38:53 -07:00
src Only force update git if -u is passed 2014-06-23 18:54:13 -07:00
tests Only force update git if -u is passed 2014-06-23 18:54:13 -07:00
.gitignore Clean up cargo-compile 2014-05-07 15:49:01 -07:00
.gitmodules Move from rust-toml to toml-rs 2014-06-23 11:38:53 -07:00
.travis.check.style.sh Update to rust style guidelines 2014-06-19 17:02:21 -07:00
.travis.install.deps.sh Get travis working on OSX 2014-06-19 15:49:40 -07:00
.travis.yml Update to rust style guidelines 2014-06-19 17:02:21 -07:00
.vimrc Add vimrc settings 2014-04-29 11:43:18 -07:00
Makefile Makefile: support install, makes packaging easier 2014-06-23 15:38:56 -07:00
MANIFEST.md Add support for detailed manifest dependencies 2014-06-09 17:51:53 -07:00
README.md Fix the README 2014-06-23 17:02:22 -07:00
Vagrantfile WIP 2014-04-11 17:39:18 -07:00

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.