Skip to content

Commit cd06552

Browse files
committed
Add debugger config for VS Code
1 parent 950d2ad commit cd06552

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug unit tests in executable 'actix-web-rest-api-with-jwt'",
11+
"cargo": {
12+
"args": [
13+
"test",
14+
"--no-run",
15+
"--bin=actix-web-rest-api-with-jwt",
16+
"--package=actix-web-rest-api-with-jwt"
17+
],
18+
"filter": {
19+
"name": "actix-web-rest-api-with-jwt",
20+
"kind": "bin"
21+
}
22+
},
23+
"args": [],
24+
"cwd": "${workspaceFolder}"
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)