2021-12-29 14:12:01 +01:00
|
|
|
{
|
2022-11-25 13:45:53 +00:00
|
|
|
// 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",
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "Debug unit tests in executable 'advent_of_code'",
|
2022-11-25 13:45:53 +00:00
|
|
|
"cargo": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"args": ["test", "--no-run", "--bin=advent_of_code", "--package=advent_of_code"],
|
2022-11-25 13:45:53 +00:00
|
|
|
"filter": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "advent_of_code",
|
2022-11-25 13:45:53 +00:00
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}"
|
2021-12-29 14:12:01 +01:00
|
|
|
},
|
2022-11-25 13:45:53 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "Debug executable 'advent_of_code'",
|
2022-11-25 13:45:53 +00:00
|
|
|
"cargo": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"args": ["build", "--bin=advent_of_code", "--package=advent_of_code"],
|
2022-11-25 13:45:53 +00:00
|
|
|
"filter": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "advent_of_code",
|
2022-11-25 13:45:53 +00:00
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": ["1"],
|
|
|
|
"cwd": "${workspaceFolder}"
|
2021-12-29 14:12:01 +01:00
|
|
|
},
|
2022-11-25 13:45:53 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "Debug unit tests in library 'advent_of_code'",
|
2022-11-25 13:45:53 +00:00
|
|
|
"cargo": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"args": ["test", "--no-run", "--lib", "--package=advent_of_code"],
|
2022-11-25 13:45:53 +00:00
|
|
|
"filter": {
|
2022-11-29 20:17:00 +01:00
|
|
|
"name": "advent_of_code",
|
2022-11-25 13:45:53 +00:00
|
|
|
"kind": "lib"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
}
|
|
|
|
]
|
2021-12-29 14:12:01 +01:00
|
|
|
}
|