fix: toml keywords

This commit is contained in:
Jack Wills
2022-07-28 17:18:00 +00:00
parent fe50ae4a05
commit dd2d82d114
2 changed files with 46 additions and 1 deletions
+45
View File
@@ -0,0 +1,45 @@
{
// 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 'oxker'",
"cargo": {
"args": [
"build",
"--bin=oxker",
"--package=oxker"
],
"filter": {
"name": "oxker",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'oxker'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=oxker",
"--package=oxker"
],
"filter": {
"name": "oxker",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}