forked from clap-rs/clap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
70 additions
and
67 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Bug report | ||
about: An issue with clap, clap_derive or clap_generate | ||
labels: 'T: bug' | ||
issue_body: false | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Please complete the following tasks | ||
options: | ||
- label: I have searched the [discussions](https://github.com/clap-rs/clap/discussions) | ||
required: true | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Rust Version | ||
description: Output of `rustc -V` | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Clap Version | ||
description: Can be found in Cargo.lock or Cargo.toml of your project (i.e. `grep clap Cargo.lock`). PLEASE DO NOT PUT "latest" HERE, use precise version. Put `master` (or other branch) if you're using the repo directly. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Minimal reproducible code | ||
description: Please write a minimal complete program which has this bug. Do not point to an existing repository. | ||
value: | | ||
```rust | ||
fn main() { | ||
} | ||
``` | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce the bug with the above code | ||
description: Example - `cargo run -- options...` | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual Behaviour | ||
placeholder: When I do like *this*, *that* is happening and I think it shouldn't. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behaviour | ||
placeholder: I think *this* should happen instead. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional Context | ||
placeholder: Add any other context about the problem here. | ||
- type: textarea | ||
attributes: | ||
label: Debug Output | ||
description: | | ||
### Debug output | ||
Compile clap with `debug` feature: | ||
```toml | ||
[dependencies] | ||
clap = { version = "*", features = ["debug"] } | ||
``` |