Skip to content

Instantly share code, notes, and snippets.

@sftblw
Last active June 22, 2017 04:13
Show Gist options
  • Select an option

  • Save sftblw/1dfb38fc9b92ffcca2e6796ab01b4495 to your computer and use it in GitHub Desktop.

Select an option

Save sftblw/1dfb38fc9b92ffcca2e6796ab01b4495 to your computer and use it in GitHub Desktop.
vscode rust tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"tasks": [
{"taskName": "build", "isBuildCommand": true, "command": "cargo", "args":["build"], "showOutput": "always" },
{"taskName": "test", "isTestCommand": true, "command": "cargo", "args":["test"], "showOutput": "always" },
{"taskName": "release", "command": "cargo", "args":["build", "--release"], "showOutput": "always" }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment