plano/crates/.vscode/tasks.json

22 lines
330 B
JSON
Raw Normal View History

2025-07-11 16:42:16 -07:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"args": [
"--bin",
"brightstaff"
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo build"
}
]
}