diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d2d9ffe --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,42 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'carpentertutoring'", + "cargo": { + "args": [ + "build", + "--bin=carpentertutoring", + "--package=carpentertutoring" + ], + "filter": { + "name": "carpentertutoring", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'carpentertutoring'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=carpentertutoring", + "--package=carpentertutoring" + ], + "filter": { + "name": "carpentertutoring", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +}
\ No newline at end of file |