From 9d0923ac49cc92eb1e75a07dcb6a8a274d144360 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Wed, 12 Apr 2023 20:56:53 +0200 Subject: Day12 done in rust --- 2022/Rust/.vscode/launch.json | 380 ------------------------------------------ 1 file changed, 380 deletions(-) delete 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 deleted file mode 100644 index 4b4567c..0000000 --- a/2022/Rust/.vscode/launch.json +++ /dev/null @@ -1,380 +0,0 @@ -{ - // 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