application_exercise/.vscode/tasks.json

14 lines
179 B
JSON
Raw Normal View History

2023-05-13 04:45:46 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc",
"$rust-panic"
],
"label": "rust: cargo run"
}
]
}