Merge branch 'master' of github.com:kbknapp/clap-rs

This commit is contained in:
Kevin K 2015-03-01 15:46:59 -05:00
commit 01b6d82448

View file

@ -1,4 +1,4 @@
# clap-rs # clap
Command Line Argument Parser written in Rust Command Line Argument Parser written in Rust
A simply library for parsing command line arguments when writing A simply library for parsing command line arguments when writing
@ -81,16 +81,19 @@ 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 = "0.3.5" 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.
## More Information
You can find complete documentation on the [github-pages site](http://kbknapp.github.io/clap-rs/docs/clap/index.html) for this project.