Update VS code config

This commit is contained in:
Hanno Braun 2022-03-16 12:14:13 +01:00
parent 544e8540c0
commit 7ad2fee874

12
.vscode/launch.json vendored
View File

@ -11,11 +11,11 @@
"cargo": { "cargo": {
"args": [ "args": [
"build", "build",
"--bin=fj-host", "--bin=fj-app",
"--package=fj-host" "--package=fj-app"
], ],
"filter": { "filter": {
"name": "fj-host", "name": "fj-app",
"kind": "bin" "kind": "bin"
} }
}, },
@ -30,11 +30,11 @@
"args": [ "args": [
"test", "test",
"--no-run", "--no-run",
"--bin=fj-host", "--bin=fj-app",
"--package=fj-host" "--package=fj-app"
], ],
"filter": { "filter": {
"name": "fj-host", "name": "fj-app",
"kind": "bin" "kind": "bin"
} }
}, },