This commit is contained in:
undef-i 2023-03-19 06:19:16 +08:00
parent 5c7f7be610
commit 576ae29d01
1 changed files with 0 additions and 45 deletions

45
.vscode/launch.json vendored
View File

@ -1,45 +0,0 @@
{
// 使 IntelliSense
//
// 访: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'bird-looking-glass'",
"cargo": {
"args": [
"build",
"--bin=bird-looking-glass",
"--package=bird-looking-glass"
],
"filter": {
"name": "bird-looking-glass",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'bird-looking-glass'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=bird-looking-glass",
"--package=bird-looking-glass"
],
"filter": {
"name": "bird-looking-glass",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}