mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
Merge branch 'master' of github.com:kbknapp/clap-rs
This commit is contained in:
commit
01b6d82448
1 changed files with 8 additions and 5 deletions
13
README.md
13
README.md
|
@ -1,4 +1,4 @@
|
|||
# clap-rs
|
||||
# clap
|
||||
Command Line Argument Parser written in Rust
|
||||
|
||||
A simply library for parsing command line arguments when writing
|
||||
|
@ -81,16 +81,19 @@ Command Line Argument Parser written in Rust
|
|||
```
|
||||
|
||||
## 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]
|
||||
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]
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue