Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.
Merged
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
26 changes: 0 additions & 26 deletions .artifacts/docs/QUICKSTART.md

This file was deleted.

202 changes: 0 additions & 202 deletions .artifacts/license/APACHE.LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions .artifacts/license/MIT.LICENSE

This file was deleted.

55 changes: 55 additions & 0 deletions .devcontainer/QUICKSTART.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
title: Quickstart for Rust Development Container
description: Quickstart guide for setting up a Rust development container using devcontainers.
---

For format details, see <https://aka.ms/devcontainer.json>. For config options, see the [README](https://github.com/devcontainers/templates/blob/main/src/rust/README.md) for the [devcontainer templates](https://github.com/devcontainers/templates/tree/main/src/rust) repository.

Use 'mounts' to make the cargo cache persistent in a Docker Volume.

```json
"mounts": [
{
"source": "devcontainer-cargo-cache-${devcontainerId}",
"target": "/usr/local/cargo",
"type": "volume"
}
]
```

Features to add to the dev container. More info: <https://containers.dev/features>.

```json
"features": {},
```

Use 'forwardPorts' to make a list of ports inside the container available locally.

```json
"forwardPorts": {},
```

Use 'postCreateCommand' to run commands after the container is created.

```json
"postCreateCommand": "rustc --version",
```

Configure tool-specific properties.

```json
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"matklad.rust-analyzer"
]
}
}
```

Uncomment to connect as root instead. More info: <https://aka.ms/dev-containers-non-root>.

```json
"remoteUser": "vscode"
```
18 changes: 18 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// For more information of features, see: https://containers.dev/features
// For more information on dev containers, see: https://aka.ms/devcontainer
// For more information on non-default roots, see: https://aka.ms/dev-containers-non-root
// For formatting details, see: https://aka.ms/devcontainer.json
// For config options, see: https://github.com/devcontainers/templates/tree/main/src/rust
{
"name": "rust",
"image": "mcr.microsoft.com/devcontainers/universal:2",
"customizations": {},
"forwardPorts": [],
"mounts": [],
"features": {
"ghcr.io/devcontainers/features/rust:1": {
"profile": "minimal",
"version": "latest"
}
}
}
26 changes: 26 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[!src/llvm-project]
indent_style = space
indent_size = 4

[*.rs]
max_line_length = 100

[*.md]
# double whitespace at end of line
# denotes a line break in Markdown
trim_trailing_whitespace = false

[*.yml]
indent_size = 2

[Makefile]
indent_style = tab
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: [FL03]
open_collective: pzzld
github: [ FL03 ]
open_collective: pzzld
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
about: Create a report to help us improve
assignees: [ FL03 ]
labels: [ bug ]
name: Bug report
title: 'Bug Report: '
type: bug
---

_**A clear and concise description of the bug.**_

## Methods

<!-- A detailed breakdown of the bug -->

### Reproducing the Bug

<!-- How can we reproduce the bug? -->

1. Step 1)
2. Step 2)
3. Step 3)

### Expectations

_**What were you expecting to happen?**_

### Outcome

_**What actually happened?**_
Loading
Loading