application_exercise/.vscode/tasks.json
2023-05-13 06:45:46 +02:00

14 lines
179 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc",
"$rust-panic"
],
"label": "rust: cargo run"
}
]
}