forked from matteo/serves3
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
// SPDX-FileCopyrightText: Public domain.
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'serves3'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=serves3",
|
|
"--package=serves3"
|
|
],
|
|
"filter": {
|
|
"name": "serves3",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'serves3'",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--bin=serves3",
|
|
"--package=serves3"
|
|
],
|
|
"filter": {
|
|
"name": "serves3",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|