We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950d2ad commit cd06552Copy full SHA for cd06552
.vscode/launch.json
@@ -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