{ // 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 'piperun-bot'", "cargo": { "args": [ "build", "--bin=piperun-bot", "--package=piperun-bot" ], "filter": { "name": "piperun-bot", "kind": "bin" } }, "args": ["cargo", "run"], "cwd": "${workspaceFolder}" }, { "type": "lldb", "request": "launch", "name": "Debug unit tests in executable 'piperun-bot'", "cargo": { "args": [ "test", "--no-run", "--bin=piperun-bot", "--package=piperun-bot" ], "filter": { "name": "piperun-bot", "kind": "bin" } }, "args": [], "cwd": "${workspaceFolder}" }, { "type": "lldb", "request": "launch", "name": "Debug executable 'groupper_report'", "cargo": { "args": [ "build", "--bin=groupped_repport", "--package=piperun-bot" ], "filter": { "name": "groupped_repport", "kind": "bin" } }, "args": ["cargo", "run", "--bin=groupped_repport"], "cwd": "${workspaceFolder}" }, ] }