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 /target
uploads /uploads

16
.vscode/launch.json vendored
View File

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