After updating the Rust Analyser extension, tasks stopped working.
My Rust Analyser configuration is the following:
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo build debug all"
}
I have changed the task format slightly to:
Essentially changing the task type from
"cargo"to"process", the command from"build"to"cargo"and moving the build command into the arguments section.