{
    "tasks": [
        {
            "type": "shell",
            "label": "cargo build",
            "command": "cargo build",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$rustc",
            ]
        },
        {
            "type": "shell",
            "label": "cargo build --release",
            "command": "cargo build --release",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$rustc",
            ]
        },
        {
            "type": "shell",
            "label": "cargo build --examples",
            "command": "cargo build --examples",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$rustc"
            ]
        },
        {
            "type": "shell",
            "label": "cargo build --examples --release",
            "command": "cargo build --examples --release",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$rustc"
            ]
        }
    ]
}