Skip to content

Commit 9b6b5d7

Browse files
Merge pull request rust-lang#58 from rust-lang/issue-templates
Add issue templates
2 parents 9801540 + e4cdd15 commit 9b6b5d7

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: Bug Report
3+
about: Create a bug report for Rust.
4+
labels: C-bug
5+
---
6+
<!--
7+
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
8+
along with any information you feel relevant to replicating the bug.
9+
-->
10+
11+
I tried this code:
12+
13+
```rust
14+
<code>
15+
```
16+
17+
I expected to see this happen: *explanation*
18+
19+
Instead, this happened: *explanation*
20+
21+
### Meta
22+
23+
`rustc --version --verbose`:
24+
```
25+
<version>
26+
```
27+
28+
29+
`crate version in Cargo.toml`:
30+
```toml
31+
[dependencies]
32+
stdsimd =
33+
```
34+
<!-- If this specifies the repo at HEAD, please include the latest commit. -->
35+
36+
37+
<!--
38+
If a backtrace is available, please include a backtrace in the code block by
39+
setting `RUST_BACKTRACE=1` in your environment. e.g.
40+
`RUST_BACKTRACE=1 cargo build`.
41+
-->
42+
<details><summary>Backtrace</summary>
43+
<p>
44+
45+
```
46+
<backtrace>
47+
```
48+
49+
</p>
50+
</details>

.github/ISSUE_TEMPLATE/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Intrinsic Support
4+
url: https://github.com/rust-lang/stdarch/issues
5+
about: Please direct issues about Rust's support for vendor intrinsics to core::arch
6+
- name: Internal Compiler Error
7+
url: https://github.com/rust-lang/rust/issues
8+
about: Please report ICEs to the rustc repository
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Feature Request
3+
about: Request an addition to the core::simd API
4+
labels: C-feature-request
5+
---
6+
<!--
7+
Hello!
8+
9+
We are very interested in any feature requests you may have.
10+
11+
However, please be aware that core::simd exists to address concerns with creating a portable SIMD API for Rust.
12+
Requests for extensions to compiler features, such as `target_feature`, binary versioning for SIMD APIs, or
13+
improving specific compilation issues in general should be discussed at https://internals.rust-lang.org/
14+
-->

0 commit comments

Comments
 (0)