rustray/.vscode/tasks.json

15 lines
354 B
JSON
Raw Normal View History

2019-03-14 18:43:23 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Cargo run",
"type": "shell",
"command": "cargo run",
"problemMatcher": [
"$rustc"
],
}
]
}