diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-04-10 18:01:24 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-04-10 18:01:24 +0200 |
| commit | 28d6c497dbb75a51419e107fc8a2e5af1656193f (patch) | |
| tree | d75a9bf9af53aaebee0cd465aa1749941c73c154 /2022/Rust/.vscode | |
| parent | 6fe48efac60f0ffcff0a81f41df33f6423189e03 (diff) | |
| download | aoc-28d6c497dbb75a51419e107fc8a2e5af1656193f.tar.xz aoc-28d6c497dbb75a51419e107fc8a2e5af1656193f.zip | |
Day9 done in rust
Diffstat (limited to '2022/Rust/.vscode')
| -rw-r--r-- | 2022/Rust/.vscode/launch.json | 380 |
1 files changed, 380 insertions, 0 deletions
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 |
