From eca06d9208cb9cc3cc68449fe731b0145dc3b9c8 Mon Sep 17 00:00:00 2001 From: dimeola Date: Thu, 12 Dec 2019 02:49:52 +0100 Subject: [PATCH] vscode launch file added for debugging --- .vscode/launch.json | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..351c73b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,64 @@ +{ + // 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 unit tests in library 'rustotpony'", + "cargo": { + "args": [ + "test", + "--no-run", + "--lib", + "--package=rustotpony" + ], + "filter": { + "name": "rustotpony", + "kind": "lib" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'totp'", + "cargo": { + "args": [ + "build", + "--bin=totp", + "--package=rustotpony" + ], + "filter": { + "name": "totp", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'totp'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=totp", + "--package=rustotpony" + ], + "filter": { + "name": "totp", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file