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

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}"
}
]
}