first commit

This commit is contained in:
OMGeeky
2023-12-15 13:44:55 +00:00
commit 6e6d914621
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "Rust",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/rust:bullseye",
"features": {
"ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {}
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"GitHub.copilot-chat",
"tamasfe.even-better-toml",
"GitHub.copilot-labs",
"GitHub.copilot",
"yzhang.markdown-all-in-one",
"alexcvzz.vscode-sqlite"
]
}
}
}

32
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"version": "0.2.0"
,"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in lib",
"cargo": {
"args":[
"test",
"--no-run",
"--lib"
]
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable",
"cargo": {
"args":[
"build",
"--bin"
]
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}