csbindgen/.vscode/tasks.json

17 lines
227 B
JSON
Raw Normal View History

2023-02-26 18:31:44 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo build"
}
]
}