twitch-tui/.vscode/launch.json
Xithrius 9ac53ca891
Preparing for v2.0 (#74)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-02-16 16:09:39 -08:00

43 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'twt'",
"cargo": {
"args": [
"build",
"--bin=twt",
"--package=twitch-tui"
],
"filter": {
"name": "twt",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'twt'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=twt",
"--package=twitch-tui"
],
"filter": {
"name": "twt",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}