{ "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 } }, ] }