fix launch config add small tweak in gitignore

This commit is contained in:
minish 2023-01-07 18:36:40 -05:00 committed by minish
parent fd8d5ffe9a
commit 3bc36bddcb
2 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
/target
uploads
/uploads

16
.vscode/launch.json vendored
View File

@ -7,15 +7,15 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'axum-demo'",
"name": "Debug executable 'breeze'",
"cargo": {
"args": [
"build",
"--bin=axum-demo",
"--package=axum-demo"
"--bin=breeze",
"--package=breeze"
],
"filter": {
"name": "axum-demo",
"name": "breeze",
"kind": "bin"
}
},
@ -25,16 +25,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'axum-demo'",
"name": "Debug unit tests in executable 'breeze'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=axum-demo",
"--package=axum-demo"
"--bin=breeze",
"--package=breeze"
],
"filter": {
"name": "axum-demo",
"name": "breeze",
"kind": "bin"
}
},