{ "version": "2.0.0", "tasks": [ { "label": "Dev build", "type": "cargo", "command": "build", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "dedicated", "showReuseMessage": false, "clear": false }, "problemMatcher": ["$rustc"], "group": { "kind": "build", "isDefault": true } }, { "label": "Release build", "type": "cargo", "command": "build", "args": ["--release", "--no-default-features"], "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "dedicated", "showReuseMessage": false, "clear": false }, "problemMatcher": ["$rustc"], "group": { "kind": "build", "isDefault": true } } ] }