chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

View File

@@ -0,0 +1,41 @@
---
name: Bug report
about: Create a report to help us improve.
title: "[BUG]"
labels: bug
assignees: Alexhuszagh
---
## Description
Please include a clear and concise description of the bug. If the bug includes a security vulnerability, you may also privately report the issue to the [maintainer](mailto:ahuszagh@gmail.com).
## Prerequisites
Here are a few things you should provide to help me understand the issue:
- Rust version: `rustc -V`
- minimal-lexical version:
## Test case
Please provide a short, complete (with crate import, etc) test case for
the issue, showing clearly the expected and obtained results.
Example test case:
```
#[macro_use]
extern crate minimal_Lexical;
fn main() {
let integer = b"1";
let fraction = b"2345";
let float: f64 = minimal_lexical::parse_float(integer.iter(), fraction.iter(), 0);
assert_eq!(value, 1.2345);
}
```
## Additional Context
Add any other context about the problem here.

View File

@@ -0,0 +1,21 @@
---
name: Custom issue template
about: Issue template for miscellaneous issues.
title: "[OTHER]"
labels: ''
assignees: Alexhuszagh
---
## Prerequisites
If applicable to the issue, here are a few things you should provide to help me understand the issue:
- Rust version: `rustc -V`
- minimal-lexical version:
## Description
Please include a clear and concise description of the issue.
## Additional Context
Add any other context or screenshots about the issue here.

View File

@@ -0,0 +1,16 @@
---
name: Documentation
about: Update the project's documentation.
title: "[DOC]"
labels: documentation
assignees: Alexhuszagh
---
## Description
Please include a clear and concise description of the issue.
Ex: Documentation for `parse_float` contains a typo.
## Additional Context
Add any other context or screenshots about the issue here.

View File

@@ -0,0 +1,27 @@
---
name: Feature request
about: Suggest an idea for this project.
title: "[FEATURE]"
labels: enhancement
assignees: Alexhuszagh
---
## Problem
A clear and concise description of what the problem is. Ex. minimal-lexical does not parse standard-conforming JSON numbers.
## Solution
A clear and concise description of what you want to happen.
## Prerequisites
If applicable to the feature request, here are a few things you should provide to help me understand the issue:
- Rust version: `rustc -V`
- minimal-lexical version:
## Alternatives
A clear and concise description of any alternative solutions or features you've considered.
## Additional Context
Add any other context or screenshots about the feature request here.

View File

@@ -0,0 +1,11 @@
---
name: Question
about: Have a question how to use minimal-lexical?
title: "[QUESTION]"
labels: question
assignees: Alexhuszagh
---
## Question
A clear and concise description of what the question is. Ex. how do I use minimal-lexical without a system allocator?