mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
Advertise gitter chat
This commit is contained in:
parent
d8434ec925
commit
16ffaea58d
3 changed files with 20 additions and 9 deletions
9
.github/ISSUE_TEMPLATE/feature_request.md
vendored
9
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -7,13 +7,18 @@ assignees: ''
|
|||
|
||||
---
|
||||
|
||||
<!--
|
||||
MAKE SURE YOU HAVE ASKED IF THIS FEATURE IS AVAILABLE
|
||||
ON https://gitter.im/kbknapp/clap-rs FIRST!
|
||||
-->
|
||||
|
||||
### Describe your use case
|
||||
|
||||
Describe the problem you're trying to solve. This is not mandatory and we *do* consider features without a specific use case, but real problems have priority.
|
||||
|
||||
Also, please follow your explanation with a snippet of code, if applicable.
|
||||
Also, please follow your explanation with a snippet of code, if applicable.
|
||||
|
||||
**If a project of yours is blocked on this feature, please, mention it explicitely.**
|
||||
**If a project of yours is blocked on this feature, please, mention it explicitely.**
|
||||
|
||||
### Describe the solution you'd like
|
||||
|
||||
|
|
7
.github/ISSUE_TEMPLATE/question.md
vendored
7
.github/ISSUE_TEMPLATE/question.md
vendored
|
@ -7,9 +7,14 @@ assignees: ''
|
|||
|
||||
---
|
||||
|
||||
<!--
|
||||
MAKE SURE YOU HAVE ASKED YOUR QUESTION
|
||||
ON https://gitter.im/kbknapp/clap-rs FIRST!
|
||||
-->
|
||||
|
||||
### What are you trying to do?
|
||||
|
||||
Explain **in detail** what your problem is.
|
||||
Explain **in detail** what your problem is.
|
||||
|
||||
Please include examples of the CLI you desire to make. Examples of command line invocations are **strongly encouraged**.
|
||||
|
||||
|
|
13
README.md
13
README.md
|
@ -10,17 +10,18 @@ Command Line Argument Parser for Rust
|
|||
|
||||
It is a simple-to-use, efficient, and full-featured library for parsing command line arguments and subcommands when writing console/terminal applications.
|
||||
|
||||
* [documentation](https://docs.rs/clap/)
|
||||
* [website](https://clap.rs/)
|
||||
* [video tutorials](https://www.youtube.com/playlist?list=PLza5oFLQGTl2Z5T8g1pRkIynR3E0_pc7U)
|
||||
* [Documentation](https://docs.rs/clap/)
|
||||
* [Chat, questions go there](https://gitter.im/kbknapp/clap-rs)
|
||||
* [Website](https://clap.rs/)
|
||||
* [Video tutorials](https://www.youtube.com/playlist?list=PLza5oFLQGTl2Z5T8g1pRkIynR3E0_pc7U)
|
||||
|
||||
> **IMPORTANT!**
|
||||
> This readme describes `clap v3.0.0` which is still under development and will be published soon-ish.
|
||||
> It was not published on crates.io yet, and if you want to use this preview anyway, use
|
||||
> This readme describes `clap v3.0.0` which is still under development and will be published soon-ish.
|
||||
> It was not published on crates.io yet, and if you want to use this preview anyway, use
|
||||
> ```toml,no_sync
|
||||
> clap = { git = "https://github.com/clap-rs/clap/" }
|
||||
> ```
|
||||
>
|
||||
>
|
||||
> If you're looking for the readme for `clap v2.33` - find it on [github](https://github.com/clap-rs/clap/tree/v2.33.0), [crates.io](https://crates.io/crates/clap/2.33.0), [docs.rs](https://docs.rs/clap/2.33.0/clap/).
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue