Update README.md

This commit is contained in:
Kevin K. 2015-03-01 11:28:42 -05:00
parent 299a93f1dc
commit 63c40eb68c

View file

@ -81,16 +81,16 @@ Command Line Argument Parser written in Rust
``` ```
## Installation ## Installation
Simply add `clap` as a dependecy in your `Cargo.toml` file: Simply add `clap` as a dependecy in your `Cargo.toml` file to use from crates.io:
``` ```
[dependencies] [dependencies]
clap = "*" clap = "*"
``` ```
Or to simply track the latest version on the master branch: Or to simply track the latest on the master branch at github:
``` ```
[dependencies.clap] [dependencies.clap]
git = "https://github.com/kbknapp/clap-rs.git" git = "https://github.com/kbknapp/clap-rs.git"
``` ```
Then run either `cargo build` or `cargo update` for your project. Then run `cargo build` or `cargo update` for your project.