summaryrefslogtreecommitdiff
path: root/2022/Rust/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '2022/Rust/.vscode')
-rw-r--r--2022/Rust/.vscode/launch.json380
1 files changed, 0 insertions, 380 deletions
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