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": {
"args": [
"build",
"--bin=fj-host",
"--package=fj-host"
"--bin=fj-app",
"--package=fj-app"
],
"filter": {
"name": "fj-host",
"name": "fj-app",
"kind": "bin"
}
},
@ -30,11 +30,11 @@
"args": [
"test",
"--no-run",
"--bin=fj-host",
"--package=fj-host"
"--bin=fj-app",
"--package=fj-app"
],
"filter": {
"name": "fj-host",
"name": "fj-app",
"kind": "bin"
}
},