mirror of
https://github.com/OMGeeky/rust-codespace.git
synced 2026-01-25 03:30:36 +01:00
first commit
This commit is contained in:
32
.vscode/launch.json
vendored
Normal file
32
.vscode/launch.json
vendored
Normal 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}"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user