45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Cargo Build (debug)",
|
|
"type": "process",
|
|
"command": "cargo",
|
|
"args": ["build"],
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Cargo Build (release)",
|
|
"type": "process",
|
|
"command": "cargo",
|
|
"args": ["build", "--release"],
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Cargo Clean",
|
|
"type": "process",
|
|
"command": "cargo",
|
|
"args": ["clean"],
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
]
|
|
}
|