csbindgen/.vscode/tasks.json

18 lines
247 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
},
2023-04-14 17:23:42 +01:00
"args": ["-vv"],
2023-02-26 18:31:44 +00:00
"label": "rust: cargo build"
}
]
}