-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTagDriver.code-workspace
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathTagDriver.code-workspace
File metadata and controls
44 lines (44 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"folders": [
{
"path": "."
}
],
"settings": {
"rust-analyzer.check.command": "clippy",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": ["$rustc"],
"label": "Cargo Build"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc-watch"],
"label": "Cargo Run"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "lldb",
"sourceLanguages": ["rust"],
"request": "launch",
"program": "${workspaceFolder}/target/debug/tag_driver",
"preLaunchTask": "Cargo Build"
// "args": ["-arg1", "-arg2"]
}
]
}
}