{
"version": "0.1.0",
"command": "cargo",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "cargo build",
"args": [
"build"
],
"isBuildCommand": true
},
{
"taskName": "cargo run",
"args": [
"run"
]
},
{
"taskName": "cargo test",
"args": [
"test"
],
"isTestCommand": true
}
]
}