viture/.vscode/tasks.json
2023-12-08 22:52:15 +01:00

14 lines
185 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo build"
}
]
}