create src

This commit is contained in:
awfixer
2026-03-11 02:04:19 -07:00
commit 52f7a22bf2
2595 changed files with 402870 additions and 0 deletions

3
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
ARG VARIANT="1"
FROM mcr.microsoft.com/devcontainers/rust:${VARIANT}
RUN apt update && apt install -y cmake

View File

@@ -0,0 +1,16 @@
{
"name": "Rust",
"build": {
"dockerfile": "Dockerfile",
"args": { "VARIANT": "1" }
},
"customizations": {
"vscode": {
"extensions": [
"EditorConfig.EditorConfig",
"rust-lang.rust-analyzer"
]
}
},
"remoteUser": "vscode"
}