This commit is contained in:
Ruediger Ludwig 2023-01-24 10:13:28 +01:00
commit 284f099d3e
22 changed files with 1717 additions and 0 deletions

61
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,61 @@
{
// 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 'advent2019'",
"cargo": {
"args": [
"build",
"--bin=advent2019",
"--package=advent2019"
],
"filter": {
"name": "advent2019",
"kind": "bin"
}
},
"args": [
"${input:program}"
],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
]
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'advent2019'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=advent2019",
"--package=advent2019"
],
"filter": {
"name": "advent2019",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
]
}
],
"inputs": [
{
"id": "program",
"type": "promptString",
"default": "day",
"description": "Which day shall I run?"
}
]
}