Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Bug Report
about: Report a bug in the CoRIM crate
title: "[Bug] "
labels: bug
assignees: ''

---

## Description

A clear and concise description of what the bug is.

## Steps to Reproduce

1. ...
2. ...
3. ...

## Expected Behavior

What you expected to happen.

## Actual Behavior

What actually happened. Include error messages, stack traces, or CBOR hex dumps if applicable.

## Environment

- **Rust version**: (`rustc --version`)
- **corim crate version**:
- **OS**:
- **CBOR backend feature**: (e.g., `cbor-ciborium`)

## Additional Context

Add any other context about the problem here.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Feature Request
about: Suggest a new feature or enhancement
title: "[Feature] "
labels: enhancement
assignees: ''

---

## Summary

A clear and concise description of the feature you'd like.

## Motivation

Why is this feature needed? What problem does it solve?

## Proposed Solution

Describe the solution you'd like. Reference relevant CDDL productions or sections of
[draft-ietf-rats-corim-10](https://www.ietf.org/archive/id/draft-ietf-rats-corim-10.html)
if applicable.

## Alternatives Considered

Any alternative solutions or features you've considered.

## Additional Context

Add any other context, CDDL snippets, or CBOR examples here.
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Description

<!-- Describe the changes in this PR. Reference any related issues. -->

## Related Issues

<!-- Link to related issues: Fixes #123, Relates to #456 -->

## Checklist

- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) guidelines
- [ ] All new source files include the Microsoft copyright header
- [ ] New public APIs have doc comments
- [ ] Tests have been added or updated
- [ ] `cargo test --all` passes
- [ ] `cargo fmt --all -- --check` passes
- [ ] `cargo clippy --all -- -D warnings` passes
Loading
Loading