From 4ee948ea41020b80b773509890f6631fd4960004 Mon Sep 17 00:00:00 2001 From: namilsk Date: Wed, 31 Dec 2025 23:09:33 +0300 Subject: Added logs annotation to `README.md` --- .vscode/launch.json | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') 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 -- cgit v1.2.3