diff options
| author | namilsk <namilsk@namilsk.tech> | 2025-12-31 23:09:33 +0300 |
|---|---|---|
| committer | namilsk <namilsk@namilsk.tech> | 2025-12-31 23:09:33 +0300 |
| commit | 4ee948ea41020b80b773509890f6631fd4960004 (patch) | |
| tree | a3596ae666fabf2bdbd163f71827b2a411efe62d /.vscode | |
| parent | ef66e6f095d5a77ac233995f4e4bd754f34d9fd4 (diff) | |
Added logs annotation to `README.md`
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2519d97 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,58 @@ +{ + // 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": [ + { + "name": "Debug executable 'init'", + "type": "lldb", + "request": "launch", + "cargo": { + "args": [ + "run", + "--bin=init", + "--package=init" + ] + }, + "args": [] + }, + { + "name": "Debug unit tests in executable 'init'", + "type": "lldb", + "request": "launch", + "cargo": { + "args": [ + "test", + "--bin=init", + "--package=init" + ] + } + }, + { + "name": "Debug executable 'vegilctl'", + "type": "lldb", + "request": "launch", + "cargo": { + "args": [ + "run", + "--bin=vegilctl", + "--package=vegilctl" + ] + }, + "args": [] + }, + { + "name": "Debug unit tests in executable 'vegilctl'", + "type": "lldb", + "request": "launch", + "cargo": { + "args": [ + "test", + "--bin=vegilctl", + "--package=vegilctl" + ] + } + } + ] +}
\ No newline at end of file |
