aboutsummaryrefslogtreecommitdiff
path: root/clap/.github/ISSUE_TEMPLATE.md
diff options
context:
space:
mode:
Diffstat (limited to 'clap/.github/ISSUE_TEMPLATE.md')
-rw-r--r--clap/.github/ISSUE_TEMPLATE.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/clap/.github/ISSUE_TEMPLATE.md b/clap/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..5f94a2c
--- /dev/null
+++ b/clap/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,46 @@
+<!--
+Please use the following template to assist with creating an issue and to ensure a speedy resolution. If an area is not applicable, feel free to delete the area or mark with `N/A`
+-->
+
+### Rust Version
+
+* Use the output of `rustc -V`
+
+### Affected Version of clap
+
+* Can be found in Cargo.lock of your project (i.e. `grep clap Cargo.lock`)
+
+### Bug or Feature Request Summary
+
+
+### Expected Behavior Summary
+
+
+### Actual Behavior Summary
+
+
+### Steps to Reproduce the issue
+
+
+### Sample Code or Link to Sample Code
+
+
+### Debug output
+
+Compile clap with cargo features `"debug"` such as:
+
+```toml
+[dependencies]
+clap = { version = "2", features = ["debug"] }
+```
+
+<details>
+<summary> Debug Output </summary>
+<pre>
+<code>
+
+Paste Debug Output Here
+
+</code>
+</pre>
+</details>