From 28d6c497dbb75a51419e107fc8a2e5af1656193f Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Mon, 10 Apr 2023 18:01:24 +0200 Subject: Day9 done in rust --- 2022/Rust/.vscode/launch.json | 380 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 380 insertions(+) create mode 100644 2022/Rust/.vscode/launch.json (limited to '2022/Rust/.vscode') diff --git a/2022/Rust/.vscode/launch.json b/2022/Rust/.vscode/launch.json new file mode 100644 index 0000000..4b4567c --- /dev/null +++ b/2022/Rust/.vscode/launch.json @@ -0,0 +1,380 @@ +{ + // 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 'day1'", + "cargo": { + "args": [ + "build", + "--bin=day1", + "--package=Rust" + ], + "filter": { + "name": "day1", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day1'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day1", + "--package=Rust" + ], + "filter": { + "name": "day1", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day2'", + "cargo": { + "args": [ + "build", + "--bin=day2", + "--package=Rust" + ], + "filter": { + "name": "day2", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day2'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day2", + "--package=Rust" + ], + "filter": { + "name": "day2", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day3'", + "cargo": { + "args": [ + "build", + "--bin=day3", + "--package=Rust" + ], + "filter": { + "name": "day3", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day3'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day3", + "--package=Rust" + ], + "filter": { + "name": "day3", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day4'", + "cargo": { + "args": [ + "build", + "--bin=day4", + "--package=Rust" + ], + "filter": { + "name": "day4", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day4'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day4", + "--package=Rust" + ], + "filter": { + "name": "day4", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day5'", + "cargo": { + "args": [ + "build", + "--bin=day5", + "--package=Rust" + ], + "filter": { + "name": "day5", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day5'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day5", + "--package=Rust" + ], + "filter": { + "name": "day5", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day6'", + "cargo": { + "args": [ + "build", + "--bin=day6", + "--package=Rust" + ], + "filter": { + "name": "day6", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day6'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day6", + "--package=Rust" + ], + "filter": { + "name": "day6", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day7'", + "cargo": { + "args": [ + "build", + "--bin=day7", + "--package=Rust" + ], + "filter": { + "name": "day7", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day7'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day7", + "--package=Rust" + ], + "filter": { + "name": "day7", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day8'", + "cargo": { + "args": [ + "build", + "--bin=day8", + "--package=Rust" + ], + "filter": { + "name": "day8", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day8'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day8", + "--package=Rust" + ], + "filter": { + "name": "day8", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day9'", + "cargo": { + "args": [ + "build", + "--bin=day9", + "--package=Rust" + ], + "filter": { + "name": "day9", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day9'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day9", + "--package=Rust" + ], + "filter": { + "name": "day9", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day10'", + "cargo": { + "args": [ + "build", + "--bin=day10", + "--package=Rust" + ], + "filter": { + "name": "day10", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day10'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day10", + "--package=Rust" + ], + "filter": { + "name": "day10", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file -- cgit v1.2.3